Skip to content

Commit 211a245

Browse files
Merge pull request #1266 from cnJasonZ/feat/jiekouAI
Add Jiekou.AI as new LLM provider
2 parents 37e7f9c + 872d5bb commit 211a245

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Global LLM configuration
2+
[llm] #Jiekou.AI:
3+
api_type = 'jiekou'
4+
model = "claude-sonnet-4-5-20250929" # The LLM model to use
5+
base_url = "https://api.jiekou.ai/openai" # API endpoint URL
6+
api_key = "your Jiekou.AI api key" # Your API key
7+
max_tokens = 64000 # Maximum number of tokens in the response
8+
temperature = 0.0 # Controls randomness
9+
10+
11+
[llm.vision] #Jiekou.AI VISION:
12+
api_type = 'jiekou'
13+
model = "claude-sonnet-4-5-20250929" # The vision model to use
14+
base_url = "https://api.jiekou.ai/openai" # API endpoint URL for vision model
15+
api_key = "your Jiekou.AI api key" # Your API key for vision model
16+
max_tokens = 64000 # Maximum number of tokens in the response
17+
temperature = 0.0 # Controls randomness for vision model

config/config.example.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ temperature = 0.0 # Controls randomness
3131
# max_tokens = 4096
3232
# temperature = 0.0
3333

34+
# [llm] #Jiekou.AI:
35+
# api_type = 'jiekou'
36+
# model = "claude-sonnet-4-5-20250929" # The LLM model to use
37+
# base_url = "https://api.jiekou.ai/openai" # API endpoint URL
38+
# api_key = "your Jiekou.AI api key" # Your API key
39+
# max_tokens = 64000 # Maximum number of tokens in the response
40+
# temperature = 0.0 # Controls randomness
41+
3442
# Optional configuration for specific LLM models
3543
[llm.vision]
3644
model = "claude-3-7-sonnet-20250219" # The vision model to use

0 commit comments

Comments
 (0)