Skip to content

Commit

Permalink
fix(agents-api): enable agent tool endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad-mtos committed Jan 13, 2025
1 parent 1e7cd34 commit 05fc137
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions agents-api/agents_api/routers/agents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

from .create_agent import create_agent

# from .create_agent_tool import create_agent_tool
from .create_agent_tool import create_agent_tool
from .create_or_update_agent import create_or_update_agent
from .delete_agent import delete_agent

# from .delete_agent_tool import delete_agent_tool
from .delete_agent_tool import delete_agent_tool
from .get_agent_details import get_agent_details

# from .list_agent_tools import list_agent_tools
from .list_agent_tools import list_agent_tools
from .list_agents import list_agents
from .patch_agent import patch_agent

# from .patch_agent_tool import patch_agent_tool
from .patch_agent_tool import patch_agent_tool
from .router import router
from .update_agent import update_agent
# from .update_agent_tool import update_agent_tool
from .update_agent_tool import update_agent_tool

0 comments on commit 05fc137

Please sign in to comment.