Get Multiple Experts
This endpoint retrieves a list of expert agents available on the B-Bot platform. Each expert is described with various attributes such as their name, profession, description, and abilities.
curl --request GET \
--url https://api.b-bot.space/api/v1/get_experts \
--header 'bbot-api-key: <api-key>'
[
{
"experts": [
{
"id": 37,
"name": "Martina Lehmann",
"description": "Martina Lehmann is a seasoned Business Development Manager with 15 years of experience in strategic planning and market analysis.",
"function_name": "Psychological Marketing Insights with Consumer Behavior Expert",
"function_description": "Martina Lehmann provides expert guidance on incorporating psychology into marketing strategies.",
"system_message": "Act as the Co-Founder and CMO of B-Bot, offering insights into Marketing Psychology.",
"createdAt": "2024-05-01T14:20:57.856Z",
"updatedAt": "2024-07-08T17:56:35.652Z",
"publishedAt": "2024-05-01T14:20:57.835Z",
"locale": "en",
"profession": "Business Development Manager",
"apps": {},
"expert_llm_models": [
{
"id": 6,
"name": "Base Model Janina",
"identifier": "gpt-3.5-turbo-0125",
"createdAt": "2024-05-01T14:20:57.904Z",
"updatedAt": "2024-05-01T15:35:57.662Z",
"publishedAt": "2024-05-01T14:50:16.311Z",
"locale": "en"
}
],
"abilities": [
{
"id": 80,
"name": "Ability",
"text": "Skilled in strategic planning and execution.",
"createdAt": "2024-06-12T19:45:02.098Z",
"updatedAt": "2024-06-28T14:12:13.933Z",
"publishedAt": "2024-06-12T19:45:02.085Z",
"locale": "en"
}
]
}
]
}
]
The experts
array may contain multiple expert objects. Each object provides
comprehensive information about an expert, including their abilities and
associated language models.
The locale
attribute denotes the language setting for both experts and their
abilities/models.
Authorizations
API key for authentication
Response
An array of expert objects.
Unique identifier of the expert.
37
Name of the expert.
"Martina Lehmann"
Detailed description of the expert's background and expertise.
"Martina Lehmann is a seasoned Business Development Manager with 15 years of experience in strategic planning and market analysis."
Title or role of the expert.
"Psychological Marketing Insights with Consumer Behavior Expert"
Description of the expert's function and how they can assist clients.
"Martina Lehmann provides expert guidance on incorporating psychology into marketing strategies."
Message to set the context for the expert's role in the system.
"Act as the Co-Founder and CMO of B-Bot, offering insights into Marketing Psychology."
Timestamp when the expert was created.
"2024-05-01T14:20:57.856Z"
Timestamp when the expert was last updated.
"2024-07-08T17:56:35.652Z"
Timestamp when the expert was published.
"2024-05-01T14:20:57.835Z"
Locale setting of the expert.
"en"
Profession of the expert.
"Business Development Manager"
Information about apps the expert is associated with.
{}
Array of LLM models associated with the expert.
Unique identifier of the LLM model.
6
Name of the LLM model.
"Base Model Janina"
Identifier of the LLM model.
"gpt-3.5-turbo-0125"
Timestamp when the LLM model was created.
"2024-05-01T14:20:57.904Z"
Timestamp when the LLM model was last updated.
"2024-05-01T15:35:57.662Z"
Timestamp when the LLM model was published.
"2024-05-01T14:50:16.311Z"
Locale setting of the LLM model.
"en"
Array of abilities describing the expert's skills.
Unique identifier of the ability.
80
Name of the ability.
"Ability"
Detailed description of the ability.
"Skilled in strategic planning and execution."
Timestamp when the ability was created.
"2024-06-12T19:45:02.098Z"
Timestamp when the ability was last updated.
"2024-06-28T14:12:13.933Z"
Timestamp when the ability was published.
"2024-06-12T19:45:02.085Z"
Locale setting of the ability.
"en"
curl --request GET \
--url https://api.b-bot.space/api/v1/get_experts \
--header 'bbot-api-key: <api-key>'
[
{
"experts": [
{
"id": 37,
"name": "Martina Lehmann",
"description": "Martina Lehmann is a seasoned Business Development Manager with 15 years of experience in strategic planning and market analysis.",
"function_name": "Psychological Marketing Insights with Consumer Behavior Expert",
"function_description": "Martina Lehmann provides expert guidance on incorporating psychology into marketing strategies.",
"system_message": "Act as the Co-Founder and CMO of B-Bot, offering insights into Marketing Psychology.",
"createdAt": "2024-05-01T14:20:57.856Z",
"updatedAt": "2024-07-08T17:56:35.652Z",
"publishedAt": "2024-05-01T14:20:57.835Z",
"locale": "en",
"profession": "Business Development Manager",
"apps": {},
"expert_llm_models": [
{
"id": 6,
"name": "Base Model Janina",
"identifier": "gpt-3.5-turbo-0125",
"createdAt": "2024-05-01T14:20:57.904Z",
"updatedAt": "2024-05-01T15:35:57.662Z",
"publishedAt": "2024-05-01T14:50:16.311Z",
"locale": "en"
}
],
"abilities": [
{
"id": 80,
"name": "Ability",
"text": "Skilled in strategic planning and execution.",
"createdAt": "2024-06-12T19:45:02.098Z",
"updatedAt": "2024-06-28T14:12:13.933Z",
"publishedAt": "2024-06-12T19:45:02.085Z",
"locale": "en"
}
]
}
]
}
]