Common interface for interacting with AI agents. The protocol is tech stack agnostic - you can use it with any framework for building agents.
1.01k
stars
120
forks
source link
Ability to List Entities and not just Ids #51
Closed
waynehamadi closed 1 year ago
List tasks, artifacts and steps in a paginated way.
Summary
Allows to list resources.
Motivation
We can't build any app without an index. An index is a GET /tasks endpoint that list information about tasks. It's like a table.
Currently to build that you need to get the list of task ids. And if you want to display 20 tasks. You will make 20 GET calls to show them.
Agent Builders Benefit
Design Proposal
Just do what everyone does: return an array of objects that represent the resource
Alternatives Considered
Compatibility