Wabee Agent Core API
Wabee Agent Core API
Wabee Agent Core API enables developers to interact with an AI agent in a custom, secure and flexible manner through REST API calls.
One can build applications to interact with the agent API to complete a task using any of the Agents
endpoints which allow for both text streaming and direct JSON response. The Memory
endpoints are useful for managing the agent memory programatically. Moreover, the Metrics
endpoints provide an interface for monitoring the underlying Agent in terms of latency, health, token consumption and much more.
curl -i -X GET \
'https://api.docs.wabee.ai/_mock/openapi/core/v1/memory/list?module_id=string' \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
curl -i -X GET \
'https://api.docs.wabee.ai/_mock/openapi/core/v1/memory/search?module_id=agent_memory&query=string' \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
Use this endpoint to include a new observation to the agent memory. The agent will retrieve relevant memories based on the context of the user input and the recency of the observation for every new interaction via /chain or /chain_streamming endpoints.
Addition Strategies: Naive --> Simply appends current observation to memory Delete --> Removes old memories that conflict with current memory Update --> Updates old memories that conflict with current memory, and alters their content to reflect the fact that they are no longer "true".
The memory of each agent is eventual consistent. If there are multiples instances of the same agent running, all of them can modify the memory and eventually all of them will have the same memory state.
Strategy to add the memory
curl -i -X POST \
'https://api.docs.wabee.ai/_mock/openapi/core/v1/memory/observation?module_id=agent_memory' \
-H 'Content-Type: application/json' \
-H 'x-wabee-access: YOUR_API_KEY_HERE' \
-d '{
"module_id": "agent_memory",
"addition_strategy": "update",
"input": "This is a test observation"
}'
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/memory/discard \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
{ "body": "Memories discarded" }
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/memory/commit \
-H 'x-wabee-access: YOUR_API_KEY_HERE'