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.
Returns quantitative information about agent runs for monitoring. The following metrics are provided:
curl -i -X GET \
https://api.docs.wabee.ai/_mock/openapi/core/v1/metrics \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
{ "status_value_counts": { "pending": 10, "success": 90 }, "total_requests": 100, "total_errors": 10, "total_tokens": 1000, "mean_tokens": 100.5, "mean_latency": 10.5, "max_latency": 35.5, "min_latency": 3.5, "total_prompt_tokens": 900, "mean_prompt_tokens": 85.5, "total_completion_tokens": 100, "mean_completion_tokens": 10.5 }
Returns run execution logs in stringify format. The logs contain the following fields:
The results are paginated. Use offset and limit parameters to navigate through pages.
curl -i -X GET \
'https://api.docs.wabee.ai/_mock/openapi/core/v1/logs?end_timestamp=0&limit=10&run_id=string&start_timestamp=0' \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
{ "data": "[{\"name\":\"Wabee LLM Advanced\",\"id\":\"70ea273b-c2ba-4c24-9a8b-aae2cda7c95e\",\"model\":\"llm-model-advanced\",\"error\":null,\"status\":\"success\",\"latency\":5.5,\"end_time\":1712076831672,\"completion_tokens\":150,\"total_tokens\":300}]", "total": 100, "has_more": true }