We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5956981 commit bfc2ef2Copy full SHA for bfc2ef2
utils/bot.py
@@ -15,7 +15,7 @@ def get_provider():
15
def get_choice(prompt):
16
provider = get_provider()
17
model = os.environ.get("PROVIDER_MODEL")
18
- config = { "reasoning_effort": "high" }
+ config = {} # { "reasoning_effort": "high" }
19
with open(script_dir / "../src/schema.json", "r", encoding="utf-8") as f:
20
schema = json.load(f)
21
response = provider.answer(
@@ -36,7 +36,7 @@ def get_choice(prompt):
36
def get_post(prompt):
37
38
39
40
41
model=model,
42
config=config,
0 commit comments