Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions agent/api/agent_server/async_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
from api.agent_server.interface import AgentInterface
from trpc_agent.agent_session import TrpcAgentSession
from nicegui_agent.agent_session import NiceguiAgentSession
from axum_agent.agent_session import AxumAgentSession
from api.agent_server.template_diff_impl import TemplateDiffAgentImplementation
from api.config import CONFIG

Expand Down Expand Up @@ -341,6 +342,7 @@ async def message(
"trpc_agent": TrpcAgentSession,
"nicegui_agent": NiceguiAgentSession,
"laravel_agent": LaravelAgentSession,
"axum_agent": AxumAgentSession,
}

if template_id not in agent_types:
Expand Down
1 change: 1 addition & 0 deletions agent/axum_agent/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Rust agent for Axum + HTMX applications
Loading