Skip to content

Commit bfc2ef2

Browse files
committed
Update bot.py
1 parent 5956981 commit bfc2ef2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/bot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def get_provider():
1515
def get_choice(prompt):
1616
provider = get_provider()
1717
model = os.environ.get("PROVIDER_MODEL")
18-
config = { "reasoning_effort": "high" }
18+
config = {} # { "reasoning_effort": "high" }
1919
with open(script_dir / "../src/schema.json", "r", encoding="utf-8") as f:
2020
schema = json.load(f)
2121
response = provider.answer(
@@ -36,7 +36,7 @@ def get_choice(prompt):
3636
def get_post(prompt):
3737
provider = get_provider()
3838
model = os.environ.get("PROVIDER_MODEL")
39-
config = { "reasoning_effort": "high" }
39+
config = {} # { "reasoning_effort": "high" }
4040
response = provider.answer(
4141
model=model,
4242
config=config,

0 commit comments

Comments
 (0)