AUXteam commited on
Commit
67b3766
·
verified ·
1 Parent(s): c6c64da

Feat: Map default model to gemini-3-flash-preview

Browse files
Files changed (1) hide show
  1. config.ini +92 -7
config.ini CHANGED
@@ -1,12 +1,97 @@
1
  [OpenAI]
 
 
 
 
 
2
  API_TYPE=openai
3
- MODEL=alias-huge
4
- REASONING_MODEL=alias-huge
5
- FALLBACK_MODEL_LARGE=alias-large
6
- FALLBACK_MODEL_HUGE=alias-huge
7
- TOP_P=1.0
8
- MAX_ATTEMPTS=999
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  WAITING_TIME=1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  [Logging]
12
- LOGLEVEL=DEBUG
 
 
 
 
 
1
  [OpenAI]
2
+ #
3
+ # OpenAI or Azure OpenAI Service
4
+ #
5
+
6
+ # Default options: openai, azure
7
  API_TYPE=openai
8
+
9
+ # Check Azure's documentation for updates here:
10
+ # https://learn.microsoft.com/en-us/azure/ai-services/openai/chatgpt-quickstart?tabs=command-line&pivots=programming-language-python
11
+ AZURE_API_VERSION=2023-05-15
12
+
13
+ #
14
+ # Models
15
+ #
16
+
17
+ # The main text generation model, used for agent responses
18
+ MODEL=gemini-3-flash-preview
19
+
20
+ # Reasoning model is used when precise reasoning is required, such as when computing detailed analyses of simulation properties.
21
+ REASONING_MODEL=gemini-3-flash-preview
22
+
23
+ # Embedding model is used for text similarity tasks
24
+ EMBEDDING_MODEL=text-embedding-3-small
25
+
26
+ #
27
+ # Model parameters
28
+ #
29
+ MAX_TOKENS=32000
30
+ TEMPERATURE=1.5
31
+ FREQ_PENALTY=0.1
32
+ PRESENCE_PENALTY=0.1
33
+ TIMEOUT=480
34
+ MAX_ATTEMPTS=5
35
  WAITING_TIME=1
36
+ EXPONENTIAL_BACKOFF_FACTOR=5
37
+
38
+ REASONING_EFFORT=high
39
+
40
+ #
41
+ # Caching
42
+ #
43
+
44
+ CACHE_API_CALLS=False
45
+ CACHE_FILE_NAME=openai_api_cache.pickle
46
+
47
+ #
48
+ # Other
49
+ #
50
+
51
+ MAX_CONTENT_DISPLAY_LENGTH=4000
52
+
53
+ [Simulation]
54
+
55
+ PARALLEL_AGENT_GENERATION=True
56
+ PARALLEL_AGENT_ACTIONS=True
57
+
58
+ RAI_HARMFUL_CONTENT_PREVENTION=True
59
+ RAI_COPYRIGHT_INFRINGEMENT_PREVENTION=True
60
+
61
+ [Cognition]
62
+
63
+ ENABLE_MEMORY_CONSOLIDATION=True
64
+
65
+ MIN_EPISODE_LENGTH=15
66
+ MAX_EPISODE_LENGTH=50
67
+
68
+ EPISODIC_MEMORY_FIXED_PREFIX_LENGTH=10
69
+ EPISODIC_MEMORY_LOOKBACK_LENGTH=20
70
+
71
+ [ActionGenerator]
72
+ MAX_ATTEMPTS=2
73
+
74
+ # This will determine whether any of the following verifications and corrections are performed.
75
+ ENABLE_QUALITY_CHECKS=False
76
+
77
+ ENABLE_REGENERATION=True
78
+ ENABLE_DIRECT_CORRECTION=False
79
+
80
+ ENABLE_QUALITY_CHECK_FOR_PERSONA_ADHERENCE=True
81
+ ENABLE_QUALITY_CHECK_FOR_SELFCONSISTENCY=False
82
+ ENABLE_QUALITY_CHECK_FOR_FLUENCY=False
83
+ ENABLE_QUALITY_CHECK_FOR_SUITABILITY=False
84
+ ENABLE_QUALITY_CHECK_FOR_SIMILARITY=False
85
+
86
+ CONTINUE_ON_FAILURE=True
87
+
88
+ # 0 to 9
89
+ QUALITY_THRESHOLD = 5
90
+
91
 
92
  [Logging]
93
+ LOGLEVEL=ERROR
94
+ # ERROR
95
+ # WARNING
96
+ # INFO
97
+ # DEBUG