Skip to content
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
3 changes: 3 additions & 0 deletions src/askui/chat/api/runs/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from askui.chat.api.runs.runner.events.message_events import MessageEvent
from askui.chat.api.runs.runner.events.run_events import RunEvent
from askui.custom_agent import CustomAgent
from askui.models.models import ModelName
from askui.models.shared.agent_message_param import (
Base64ImageSourceParam,
ImageBlockParam,
Expand Down Expand Up @@ -327,10 +328,12 @@ def _run_agent_inner() -> None:
custom_agent = CustomAgent()
custom_agent.act(
messages,
model=ModelName.ASKUI,
on_message=on_message,
tools=_tools,
settings=ActSettings(
messages=MessageSettings(
model=ModelName.CLAUDE__SONNET__4__20250514,
system=self._assistant.system or anthropic.NOT_GIVEN,
thinking={"type": "enabled", "budget_tokens": 2048},
),
Expand Down