Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 52a13f2a57 | |||
| 211a245c95 | |||
| 872d5bb59e |
@@ -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},
|
||||
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user