forked from EmergenceAI/Agent-E
-
Notifications
You must be signed in to change notification settings - Fork 0
/
agents_llm_config-example.json
50 lines (50 loc) · 1.39 KB
/
agents_llm_config-example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"mistral-large-agente": {
"planner_agent": {
"model_name": "mistral",
"model_api_key": "",
"model_base_url": "https://...",
"system_prompt": "You are a web automation task planner....",
"llm_config_params": {
"cache_seed": null,
"temperature": 0.1,
"top_p": 0.1
}
},
"browser_nav_agent": {
"model_name": "mistral",
"model_api_key": "",
"model_base_url": "https://...",
"system_prompt": "You will perform web navigation tasks with the functions that you have...\nOnce a task is completed, confirm completion with ##TERMINATE TASK##.",
"llm_config_params": {
"cache_seed": null,
"temperature": 0.1,
"top_p": 0.1
}
}
},
"openai_gpt": {
"planner_agent": {
"model_name": "gpt-4o",
"model_api_key": "sk-...",
"model_base_url": null,
"llm_config_params": {
"cache_seed": null,
"temperature": 0.0,
"top_p": 0.001,
"seed":12345
}
},
"browser_nav_agent": {
"model_name": "gpt-4o",
"model_api_key": "sk-...",
"model_base_url": null,
"llm_config_params": {
"cache_seed": null,
"temperature": 0.0,
"top_p": 0.001,
"seed":12345
}
}
}
}