This interface defines the structure of the request body used when creating a new AI Knowledge Base.
export interface CreateAiKnowledgeBaseRequest {
    name: string;
    description?: string;
    type: 'vector' | 'graph' | 'hybrid';
    embedding_model?: string;
}

Properties

  • name (string): The name of the AI knowledge base.
  • description (string, optional): A description of the AI knowledge base.
  • type (string): The type of the knowledge base (‘vector’, ‘graph’, or ‘hybrid’).
  • embedding_model (string, optional): The embedding model used for the knowledge base.