David Chu
commited on
fix(ELN-10): lower temperature for more consistent answers
Browse files- app/agent.py +1 -0
app/agent.py
CHANGED
@@ -16,6 +16,7 @@ CONFIG = types.GenerateContentConfig(
|
|
16 |
],
|
17 |
system_instruction=(Path(__file__).parent / "system_instruction.txt").read_text(),
|
18 |
thinking_config=types.ThinkingConfig(include_thoughts=True, thinking_budget=1024),
|
|
|
19 |
)
|
20 |
|
21 |
RESPONSE_FORMAT = """\
|
|
|
16 |
],
|
17 |
system_instruction=(Path(__file__).parent / "system_instruction.txt").read_text(),
|
18 |
thinking_config=types.ThinkingConfig(include_thoughts=True, thinking_budget=1024),
|
19 |
+
temperature=0.1,
|
20 |
)
|
21 |
|
22 |
RESPONSE_FORMAT = """\
|