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.
Executes a chain of AI-powered reasoning and actions to respond to a given query or task.
The agent leverages its configured tools and knowledge to:
Include images in your request using the images
field:
type="base64"
with base64-encoded image datatype="file_path"
with path to existing imageMaximum 5 images per request. Invalid images will trigger a 400 response.
Requires API key via x-wabee-access
header.
Use session-id
header to maintain conversation context across requests.
List of messages to be processed by the agent
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
The path for files which the agent already has access to and should be considered by it when processing the messages
The path for files which the agent already has access to and should be considered by it when processing the messages
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/chain \
-H 'Content-Type: application/json' \
-H 'session-id: ' \
-H 'x-wabee-access: YOUR_API_KEY_HERE' \
-d '{
"messages": [
{
"content": "What is the economic outlook?",
"role": "user"
}
],
"data_filter_hints": [
{
"filter_key": "unitname",
"filter_type": "equals",
"filter_value": "Unit 1",
"tool_name": "bubble_data"
}
],
"context_files": [
"inputs/chat-files/test123/file.pdf"
],
"images": [
{
"content": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOydd3gU5f7/3+9z",
"type": "base64"
}
]
}'
Successful Response
Represents the complete response from the AI agent
The original input message sent to the agent
The final response generated by the agent
The sequence of steps taken by the agent to generate the response, including tool usage and reasoning
Represents a single step in the agent's reasoning process
The identifier of the tool used in this step
The input provided to the tool
Detailed log of the tool execution
The type of action performed in this step
Resource usage metrics for the request
The name of the resource being measured (e.g. model name)
{ "body": { "input": "What is the economic outlook?", "output": "The economic outlook varies significantly by region...", "intermediate_steps": [ … ], "usage": [ … ] } }
Requests Wabee AI Agent to answer a question regarding the mission that the agent was given to upon creation.
The agent can make use of any of the available tools along with its own reasoning to complete the given task, depending on its complexity, the response might take some time to be returned to the user.
Note: session_id
field on request body is kept for compatibility purposes, it will be overwritten with the header value during request processing Note: stream
filed on request body is kept for compatibility purposes, it will be ignored during request processing Note: this is pretty much the same as in /chain
, the only difference is that this endpoint returns a streaming response instead of a JSON object Note: the id on the streamming response refers to the current request Note: the streamming response ends when finish_reason is different than null Note: All headers starting with stix will be sent as context for tools.
List of messages to be processed by the agent
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
The path for files which the agent already has access to and should be considered by it when processing the messages
The path for files which the agent already has access to and should be considered by it when processing the messages
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/chain_streaming \
-H 'Content-Type: application/json' \
-H 'session-id: ' \
-H 'x-wabee-access: YOUR_API_KEY_HERE' \
-d '{
"messages": [
{
"content": "What is the economic outlook?",
"role": "user"
}
],
"data_filter_hints": [
{
"filter_key": "unitname",
"filter_type": "equals",
"filter_value": "Unit 1",
"tool_name": "bubble_data"
}
],
"context_files": [
"inputs/chat-files/test123/file.pdf"
],
"images": [
{
"content": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOydd3gU5f7/3+9z",
"type": "base64"
}
]
}'
data: {"id": "3f364df0-a4e5-41b1-bb33-eeaa616a8060", "token": "A perspectiva econômica pode ", "agent_step": "PERGUNTA", "finish_reason": "null", "usage": [{"costAttribute": "gpt-4-32k", "usage": 100, "unit": "tokens"}]}
Requests Wabee AI Agent to answer a question asynchronously. If a callback_url is provided, the agent will send the response to the given URL.
The agent can make use of any of the available tools along with its own reasoning to complete the given task, depending on its complexity, the response might take some time to be returned to the user.
Note: session_id
field on request body is kept for compatibility purposes, it will be overwritten with the header value during request processing Note: stream
filed on request body is kept for compatibility purposes, it will be ignored during request processing
The type of the event. Use the value 'ai.wabee.agent.chain' for chain requests.
The data of the event.
List of messages to be processed by the agent
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
The path for files which the agent already has access to and should be considered by it when processing the messages
The path for files which the agent already has access to and should be considered by it when processing the messages
List of images associated with the message
List of images associated with the message
An optional session ID to associate with the chain. This can be used to track multiple interactions with the chain across different requests. If not provided, a session ID will be generated.
An optional session ID to associate with the chain. This can be used to track multiple interactions with the chain across different requests. If not provided, a session ID will be generated.
An optional session ID to associate with the chain. This can be used to track multiple interactions with the chain across different requests. If not provided, a session ID will be generated.
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/chain_async \
-H 'Content-Type: application/json' \
-H 'x-wabee-access: YOUR_API_KEY_HERE' \
-d '{
"specversion": "1.0",
"type": "ai.wabee.agent.chain",
"source": "https://wabee.ai/agent",
"id": "A234-1234-1234",
"time": "2018-04-05T17:31:00Z",
"data": {
"messages": [
{
"content": "What is the economic outlook?",
"role": "user"
}
],
"data_filter_hints": [
{
"filter_key": "unitname",
"filter_type": "equals",
"filter_value": "Unit 1",
"tool_name": "bubble_data"
}
],
"context_files": [
"inputs/chat-files/test123/file.pdf"
],
"images": [
{
"content": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOydd3gU5f7/3+9z",
"type": "base64"
}
],
"session_id": "string",
"callback_url": "string"
}
}'
curl -i -X GET \
https://api.docs.wabee.ai/_mock/openapi/core/v1/metadata \
-H 'x-wabee-access: YOUR_API_KEY_HERE'
{ "name": "Wabee Agent", "description": "An AI agent that helps with specific tasks", "metadata": {} }
Requests Wabee AI Agent to answer a question regarding the mission that the agent was given to upon creation.
The agent can make use of any of the available tools along with its own reasoning to complete the given task, depending on its complexity, the response might take some time to be returned to the user.
Images can be included in messages using the images
field, which accepts a list of image inputs. Each image can be provided in one of two formats:
Invalid image inputs will result in a 400 Bad Request response. The endpoint validates:
Note: session_id
field on request body is kept for compatibility purposes, it will be overwritten with the header value during request processing Note: stream
filed on request body is kept for compatibility purposes, it will be ignored during request processing Note: this is pretty much the same as in /chain
, the only difference is that this endpoint returns a streaming response instead of a JSON object Note: the id on the streamming response refers to the current request Note: the streamming response ends when finish_reason is different than null Note: All headers starting with stix will be sent as context for tools.
List of messages to be processed by the agent
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
Special metadata-like hints to be passed to the agent in order to instruct him on how to filter the data on some tools that support filter
The path for files which the agent already has access to and should be considered by it when processing the messages
The path for files which the agent already has access to and should be considered by it when processing the messages
curl -i -X POST \
https://api.docs.wabee.ai/_mock/openapi/core/v1/chain_streamming \
-H 'Content-Type: application/json' \
-H 'session-id: ' \
-H 'x-wabee-access: YOUR_API_KEY_HERE' \
-d '{
"messages": [
{
"content": "What is the economic outlook?",
"role": "user"
}
],
"data_filter_hints": [
{
"filter_key": "unitname",
"filter_type": "equals",
"filter_value": "Unit 1",
"tool_name": "bubble_data"
}
],
"context_files": [
"inputs/chat-files/test123/file.pdf"
],
"images": [
{
"content": "iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOydd3gU5f7/3+9z",
"type": "base64"
}
]
}'
data: {"id": "3f364df0-a4e5-41b1-bb33-eeaa616a8060", "token": "The economic outlook may ", "agent_step": "QUESTION", "finish_reason": "null", "usage": [{"costAttribute": "gpt-4-32k", "usage": 100, "unit": "tokens"}]}