SmartFlow commited on
Commit
97d7404
·
verified ·
1 Parent(s): 19e1819

Update mindsearch/agent/models.py

Browse files
Files changed (1) hide show
  1. mindsearch/agent/models.py +20 -0
mindsearch/agent/models.py CHANGED
@@ -95,6 +95,26 @@ internlm_silicon = dict(
95
  )
96
 
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  internlm_api = dict(
99
  type=GPTAPI,
100
  model_type="internlm2.5-latest",
 
95
  )
96
 
97
 
98
+ deepseekv3_silicon = dict(
99
+ type=GPTAPI,
100
+ model_type="deepseek-ai/DeepSeek-V3",
101
+ key=os.environ.get("SILICON_API_KEY", "YOUR SILICON API KEY"),
102
+ api_base="https://api.siliconflow.cn/v1/chat/completions",
103
+ meta_template=[
104
+ dict(role="system", api_role="system"),
105
+ dict(role="user", api_role="user"),
106
+ dict(role="assistant", api_role="assistant"),
107
+ dict(role="environment", api_role="system"),
108
+ ],
109
+ top_p=0.8,
110
+ top_k=1,
111
+ temperature=0,
112
+ max_new_tokens=8192,
113
+ repetition_penalty=1.02,
114
+ stop_words=["<|im_end|>"],
115
+ )
116
+
117
+
118
  internlm_api = dict(
119
  type=GPTAPI,
120
  model_type="internlm2.5-latest",