Skip to content

Commit

Permalink
Merge pull request #352 from eltociear/patch-2
Browse files Browse the repository at this point in the history
chore: update settings.py
  • Loading branch information
jlowin authored Oct 9, 2024
2 parents 4fec8c2 + 8ded4c0 commit 159147f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/controlflow/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@ class Settings(ControlFlowSettings):
orchestrator_max_agent_turns: Optional[int] = Field(
default=100,
description="The default maximum number of agent turns per orchestration session."
"If None, orchestration may run indefinitely. This setting can be overriden on a per-call basis.",
"If None, orchestration may run indefinitely. This setting can be overridden on a per-call basis.",
)
orchestrator_max_llm_calls: Optional[int] = Field(
default=1000,
description="The default maximum number of LLM calls per orchestrating session. "
"If None, orchestration may run indefinitely. This setting can be overriden on a per-call basis.",
"If None, orchestration may run indefinitely. This setting can be overridden on a per-call basis.",
)
task_max_llm_calls: Optional[int] = Field(
default=None,
description="The default maximum number of LLM calls over a task's lifetime. "
"If None, the task may run indefinitely. This setting can be overriden on a per-task basis.",
"If None, the task may run indefinitely. This setting can be overridden on a per-task basis.",
)

# ------------ LLM settings ------------
Expand Down

0 comments on commit 159147f

Please sign in to comment.