Firoj112 commited on
Commit
8152e12
·
verified ·
1 Parent(s): 9cb4e3c

Create agent.json

Browse files
Files changed (1) hide show
  1. agent.json +45 -0
agent.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tools": [
3
+ "search_item_ctrl_f",
4
+ "go_back",
5
+ "close_popups",
6
+ "final_answer"
7
+ ],
8
+ "model": {
9
+ "class": "LiteLLMModel",
10
+ "data": {
11
+ "model_name": "gemini/gemini-2.0-flash",
12
+ "api_key": null,
13
+ "max_tokens": 2096,
14
+ "temperature": 0.5
15
+ }
16
+ },
17
+ "prompt_templates": {
18
+ "system_prompt": "{{from_yaml}}",
19
+ "planning": {
20
+ "initial_facts": "{{from_yaml}}",
21
+ "initial_plan": "{{from_yaml}}",
22
+ "update_facts_pre_messages": "{{from_yaml}}",
23
+ "update_facts_post_messages": "{{from_yaml}}",
24
+ "update_plan_pre_messages": "{{from_yaml}}",
25
+ "update_plan_post_messages": "{{from_yaml}}"
26
+ }
27
+ },
28
+ "max_steps": 20,
29
+ "verbosity_level": 2,
30
+ "authorized_imports": [
31
+ "helium",
32
+ "unicodedata",
33
+ "stat",
34
+ "datetime",
35
+ "random",
36
+ "pandas",
37
+ "itertools",
38
+ "math",
39
+ "statistics",
40
+ "queue",
41
+ "time",
42
+ "collections",
43
+ "re"
44
+ ]
45
+ }