Skip to content

Commit

Permalink
fix: Reduce recursion_limit from 1000 to 10 for improved performance
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Dec 20, 2024
1 parent ef55034 commit 733c160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_computer_assistant/agent/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from llm import get_model
from llm_settings import llm_settings

config = {"configurable": {"thread_id": "abc123"}, "recursion_limit":1000}
config = {"configurable": {"thread_id": "abc123"}, "recursion_limit":10}



Expand Down

0 comments on commit 733c160

Please sign in to comment.