@aiagenta2z/onekey-gateway 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,8 @@ OneKey Gateway provides CLI tool, Restful API, MCP, Skills and Python/Typescript
|
|
|
19
19
|
| LLM | Allow your AI clients to call LLM endpoint proxy [OneKey LLM Router Doc](https://www.deepnlp.org/doc/onekey_llm_router) | https://agent.deepnlp.org/llm | `onekey llm` |
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
Want to register your API? See the top ranked onekey gateway called [Agent API Skills MCP Calls Ranking](https://deepnlp.org/agent/rankings)
|
|
23
|
+
|
|
22
24
|
| Gateway Type | Description |
|
|
23
25
|
|---------------------------------------------------|----------------------------------------------------------------------------------------|
|
|
24
26
|
| Register Your New API | [OneKey Gateway Registry Documents](https://www.deepnlp.org/doc/onekey_agent_registry) |
|
|
@@ -147,6 +149,22 @@ onekey agent craftsman-agent/craftsman-agent generate_lego_build_plan '{"prompt"
|
|
|
147
149
|
<img src="https://raw.githubusercontent.com/AI-Hub-Admin/Craftsman-Agent/refs/heads/main/docs/craftsman_agent_2.jpg" style="width:500px" alt="Image generation">
|
|
148
150
|
|
|
149
151
|
|
|
152
|
+
### Example 4. Generate Tesla Car Wrap
|
|
153
|
+
|
|
154
|
+
prompt: model YL F1 race car blue and purple with stars
|
|
155
|
+
model: tesla_model_yl
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
export DEEPNLP_ONEKEY_ROUTER_ACCESS=YOUR_ACCESS_KEY
|
|
159
|
+
npx onekey agent craftsman-agent/craftsman-agent generate_tesla_wraps '{"prompt":"I would like to paint my tesla model YL similar to F1 race car, color of a blue and purple with stars","images":[],"mode":"basic","car_model":"tesla_model_yl","output_number":1}'
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
<img src="https://raw.githubusercontent.com/AI-Hub-Admin/Craftsman-Agent/refs/heads/main/docs/model_yl_racing.png" style="width:500px" alt="Tesla Model YL">
|
|
163
|
+
|
|
164
|
+
```
|
|
165
|
+
{"success":true,"text":"","images":[{"url":"https://us-static.aiagenta2z.com/local/files-wd/onekey_llm_router/722aa763-ec48-48b5-acfd-c569f89ffc50.png"}]}
|
|
166
|
+
```
|
|
167
|
+
|
|
150
168
|
|
|
151
169
|
## Tutorial
|
|
152
170
|
|
package/package.json
CHANGED