npc0 commited on
Commit
da78cb6
·
verified ·
1 Parent(s): 6bc985c

Create settings.yaml

Browse files
Files changed (1) hide show
  1. settings.yaml +19 -0
settings.yaml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ llm:
2
+ api_key: "3bf18984-b4df-49ba-a30b-6cbae3964b08"
3
+ type: openai_chat
4
+ model_supports_json: true
5
+ model: "claude-3-5-sonnet-20240620"
6
+ api_base: "http://localhost:30012/v1"
7
+ # max_tokens: 10000 # Adjusted based on Claude 3 Haiku's typical context window
8
+ request_timeout: 30
9
+ tokens_per_minute: 100000
10
+ requests_per_minute: 1000
11
+ max_retry_wait: 5
12
+ temperature: 0.1
13
+
14
+ embeddings:
15
+ async_mode: threaded
16
+ llm:
17
+ type: openai_embedding
18
+ model: "mixedbread-ai/mxbai-embed-large-v1"
19
+ api_base: "http://localhost:7997"