Core Concepts
Agent Detail
Structure and usage of the Agent Detail
The Agent Detail describes essential properties of an agent, including its identity, capabilities, metadata, and runtime status.
Parameters
The schema is of type object
.
{
"name": "chat",
"description": "Conversational agent with memory, supporting real-time search, Wikipedia lookups, and weather updates through integrated tools",
"metadata": {
"annotations": {},
"documentation": "The agent is a conversational system designed to process user messages, maintain context, and generate...",
"license": "Apache-2.0",
"programming_language": "Python",
"natural_languages": [
"en"
],
"framework": "BeeAI",
"capabilities": [
{
"name": "Conversational AI",
"description": "Handles multi-turn conversations with memory."
},
{
"name": "Vacation Request",
"description": "Handles submission and tracking of vacation requests."
}
],
"domains": [
"finance",
"healthcare",
"supply-chain"
],
"tags": [
"Chat"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"author": {
"name": "John Smith",
"email": "jsmith@example.com",
"url": "https://example.com"
},
"contributors": [
{
"name": "John Smith",
"email": "jsmith@example.com",
"url": "https://example.com"
}
],
"links": [
{
"type": "source-code",
"url": "https://github.com/i-am-bee/beeai-platform.git"
}
],
"dependencies": [
{
"type": "tool",
"name": "weather"
}
],
"recommended_models": [
"llama3.3:70b-instruct-fp16"
]
},
"status": {
"avg_run_tokens": 123,
"avg_run_time_seconds": 123,
"success_rate": 50
},
"securitySchemes": {
"type": "apiKey",
"description": "<string>"
},
"security": [
{}
]
}
Assistant
Responses are generated using AI and may contain mistakes.