v1
latestOpenAPI 3.1.02026-07-2618690613.4 KBAI
Pick topic
Analyze a natural language prompt and determines which topic in the model is the best fit for answering the question.
Useful as a preprocessing step before calling the Generate AI query or Create AI job endpoints, especially when the user's question could relate to multiple topics.
post/v1/ai/pick-topic
Request body
Example request
{
"branchId": "550e8400-e29b-41d4-a716-446655440000",
"currentTopicName": "order_items",
"modelId": "770e8400-e29b-41d4-a716-446655440002",
"potentialTopicNames": [
"order_items",
"customers",
"products"
],
"prompt": "How many orders were placed last month?",
"userId": "990e8400-e29b-41d4-a716-446655440004"
}Response
Topic selected successfully. The returned topicId can be used as the topicName parameter in other AI endpoints.
Example response
{
"topicId": "order_items"
}