You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The agent protocol spec has been updated, we need to update JS SDK to match the spec.
Describe the solution you'd like
Python SDK has been refactored quite a lot, you should imitate the python implementation .
We added artifacts
Each task has own workspace where it can save the files (this should be configurable with environment variable AGENT_WORKSPACE)
There' s download endpoint
We added db property to Agent class. Without changes it default to in memory storage, but the user should be able to change it to his preferred storage (probably some form of database).
The task / step handler logic has been reworked. Now the functions receive Task / Step on the input. This allows agent to run statelessly
Routes should be extensible, if the agent want to add another endpoint or change the default implementation, he should be able to.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The agent protocol spec has been updated, we need to update JS SDK to match the spec.
Describe the solution you'd like
Python SDK has been refactored quite a lot, you should imitate the python implementation .
workspace
where it can save the files (this should be configurable with environment variableAGENT_WORKSPACE
)db
property toAgent
class. Without changes it default to in memory storage, but the user should be able to change it to his preferred storage (probably some form of database).Task
/Step
on the input. This allows agent to run statelesslyThe text was updated successfully, but these errors were encountered: