Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update settings.py #352

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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