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

fix: error function response type #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 4 additions & 2 deletions packages/sdk/python/agent_protocol/agent.py
Original file line number Diff line number Diff line change
@@ -51,7 +51,9 @@ async def create_agent_task(body: TaskRequestBody | None = None) -> Task:


@base_router.get("/ap/v1/agent/tasks", response_model=TaskListResponse, tags=["agent"])
async def list_agent_tasks_ids(page_size: int = 10, current_page: int = 1) -> List[str]:
async def list_agent_tasks_ids(
page_size: int = 10, current_page: int = 1
) -> TaskListResponse:
"""
List all tasks that have been created for the agent.
"""
@@ -84,7 +86,7 @@ async def get_agent_task(task_id: str) -> Task:
)
async def list_agent_task_steps(
task_id: str, page_size: int = 10, current_page: int = 1
) -> List[str]:
) -> TaskStepsListResponse:
"""
List all steps for the specified task.
"""