Spaces:
Paused
Paused
Upload folder using huggingface_hub
Browse files- config.ini +2 -2
- tinytroupe/agent/action_generator.py +1 -2
- tinytroupe/config.ini +2 -2
config.ini
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
[OpenAI]
|
| 2 |
API_TYPE=helmholtz-blablador
|
| 3 |
-
MODEL=alias-
|
| 4 |
-
REASONING_MODEL=alias-
|
| 5 |
FALLBACK_MODEL_LARGE=alias-large
|
| 6 |
FALLBACK_MODEL_HUGE=alias-huge
|
| 7 |
TOP_P=1.0
|
|
|
|
| 1 |
[OpenAI]
|
| 2 |
API_TYPE=helmholtz-blablador
|
| 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
|
tinytroupe/agent/action_generator.py
CHANGED
|
@@ -67,8 +67,7 @@ class ActionGenerator(JsonSerializableRegistry):
|
|
| 67 |
# This generator has its own copies of the propositions, in order to be able to isolate them
|
| 68 |
# from other agents, particularly when running the simulation in parallel.
|
| 69 |
self.action_persona_adherence = propositions.hard_action_persona_adherence.copy()
|
| 70 |
-
|
| 71 |
-
|
| 72 |
self.action_self_consistency = propositions.action_self_consistency.copy()
|
| 73 |
self.action_fluency = propositions.action_fluency.copy()
|
| 74 |
self.action_suitability = propositions.action_suitability.copy()
|
|
|
|
| 67 |
# This generator has its own copies of the propositions, in order to be able to isolate them
|
| 68 |
# from other agents, particularly when running the simulation in parallel.
|
| 69 |
self.action_persona_adherence = propositions.hard_action_persona_adherence.copy()
|
| 70 |
+
|
|
|
|
| 71 |
self.action_self_consistency = propositions.action_self_consistency.copy()
|
| 72 |
self.action_fluency = propositions.action_fluency.copy()
|
| 73 |
self.action_suitability = propositions.action_suitability.copy()
|
tinytroupe/config.ini
CHANGED
|
@@ -15,10 +15,10 @@ AZURE_API_VERSION=2023-05-15
|
|
| 15 |
#
|
| 16 |
|
| 17 |
# The main text generation model, used for agent responses
|
| 18 |
-
MODEL=alias-
|
| 19 |
|
| 20 |
# Reasoning model is used when precise reasoning is required, such as when computing detailed analyses of simulation properties.
|
| 21 |
-
REASONING_MODEL=alias-
|
| 22 |
|
| 23 |
# Embedding model is used for text similarity tasks
|
| 24 |
EMBEDDING_MODEL=text-embedding-3-small
|
|
|
|
| 15 |
#
|
| 16 |
|
| 17 |
# The main text generation model, used for agent responses
|
| 18 |
+
MODEL=alias-huge
|
| 19 |
|
| 20 |
# Reasoning model is used when precise reasoning is required, such as when computing detailed analyses of simulation properties.
|
| 21 |
+
REASONING_MODEL=alias-huge
|
| 22 |
|
| 23 |
# Embedding model is used for text similarity tasks
|
| 24 |
EMBEDDING_MODEL=text-embedding-3-small
|