Compare commits

..

3 Commits

Author SHA1 Message Date
Jiayi Zhang 52a13f2a57 Update README.md
Pre-commit checks / pre-commit-check (push) Failing after 0s
2026-01-04 11:11:56 +08:00
Jiayi Zhang 211a245c95 Merge pull request #1266 from cnJasonZ/feat/jiekouAI
Add Jiekou.AI as new LLM provider
2025-11-14 18:50:00 +08:00
cnJasonZ 872d5bb59e feat: add JiekouAI as new provider 2025-11-07 13:48:49 +08:00
3 changed files with 26 additions and 1 deletions
+1 -1
View File
@@ -185,7 +185,7 @@ OpenManus is built by contributors from MetaGPT. Huge thanks to this agent commu
## Cite
```bibtex
@misc{openmanus2025,
author = {Xinbin Liang and Jinyu Xiang and Zhaoyang Yu and Jiayi Zhang and Sirui Hong and Sheng Fan and Xiao Tang},
author = {Xinbin Liang and Jinyu Xiang and Zhaoyang Yu and Jiayi Zhang and Sirui Hong and Sheng Fan and Xiao Tang and Bang Liu and Yuyu Luo and Chenglin Wu},
title = {OpenManus: An open-source framework for building general AI agents},
year = {2025},
publisher = {Zenodo},
+17
View File
@@ -0,0 +1,17 @@
# Global LLM configuration
[llm] #Jiekou.AI:
api_type = 'jiekou'
model = "claude-sonnet-4-5-20250929" # The LLM model to use
base_url = "https://api.jiekou.ai/openai" # API endpoint URL
api_key = "your Jiekou.AI api key" # Your API key
max_tokens = 64000 # Maximum number of tokens in the response
temperature = 0.0 # Controls randomness
[llm.vision] #Jiekou.AI VISION:
api_type = 'jiekou'
model = "claude-sonnet-4-5-20250929" # The vision model to use
base_url = "https://api.jiekou.ai/openai" # API endpoint URL for vision model
api_key = "your Jiekou.AI api key" # Your API key for vision model
max_tokens = 64000 # Maximum number of tokens in the response
temperature = 0.0 # Controls randomness for vision model
+8
View File
@@ -31,6 +31,14 @@ temperature = 0.0 # Controls randomness
# max_tokens = 4096
# temperature = 0.0
# [llm] #Jiekou.AI:
# api_type = 'jiekou'
# model = "claude-sonnet-4-5-20250929" # The LLM model to use
# base_url = "https://api.jiekou.ai/openai" # API endpoint URL
# api_key = "your Jiekou.AI api key" # Your API key
# max_tokens = 64000 # Maximum number of tokens in the response
# temperature = 0.0 # Controls randomness
# Optional configuration for specific LLM models
[llm.vision]
model = "claude-3-7-sonnet-20250219" # The vision model to use