-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidf_component.yml
More file actions
52 lines (46 loc) · 1.36 KB
/
idf_component.yml
File metadata and controls
52 lines (46 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## IDF Component Manager Manifest File
version: "0.1.0"
description: "Production-ready ESP-IDF component for xAI Grok API - 25+ models, streaming chat, vision, web/X/RSS search, function calling, image generation, and Responses API optimized for ESP32"
url: "https://github.com/PlaiPin/xai"
documentation: "https://github.com/PlaiPin/xai/blob/main/README.md"
repository: "https://github.com/PlaiPin/xai.git"
issues: "https://github.com/PlaiPin/xai/issues"
license: "Apache-2.0"
maintainers:
- "PlaiPin <contact@plaipin.com>"
dependencies:
## Required IDF version (v5.0+ for modern HTTP client features)
idf:
version: ">=5.0.0"
# cJSON for JSON parsing and generation
# Note: esp_http_client, esp-tls, mbedtls are built-in IDF components
# and are specified in CMakeLists.txt REQUIRES section
espressif/cjson:
version: "^1.7.15"
public: true
# WebSocket client (used by Grok Voice Realtime API support)
espressif/esp_websocket_client:
version: "^1.2.3"
public: true
examples:
- path: "examples/basic_chat"
- path: "examples/streaming_chat"
- path: "examples/conversation"
- path: "examples/vision"
- path: "examples/web_search"
- path: "examples/tools"
- path: "examples/image_generation"
tags:
- xai
- grok
- llm
- chat
- vision
- streaming
- search
- tools
- image
- http
- rest
- machine_learning
- esp32