Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
AiAssistantJobResult
Status and result of the AI Assistant job
type AiAssistantJobResult {
answer: String!
assets: [AssetWithInternalLink!]!
status: JobStatus!
}
Fields
AiAssistantJobResult.answer ● String! non-null scalar general
The answer to the question
AiAssistantJobResult.assets ● [AssetWithInternalLink!]! non-null object ai
The list of assets referenced to generate the answer
AiAssistantJobResult.status ● JobStatus! non-null enum ai
The current status of the job
Example
{
"answer": "MRR is short for Monthly Recurring Revenue",
"assets": [
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"internalLink": "https://app.castordoc.com/assets/fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"name": "Monthly Recurring Revenue",
"url": "https://cloud.google.com/looker"
}
],
"status": "completed"
}