POST
/
v4
/
knowledge-bases
JavaScript
import SGPClient from 'sgp';

const client = new SGPClient({
  apiKey: 'My API Key',
});

const createKnowledgeBaseResponse = await client.knowledgeBases.create({
  embedding_config: { model_deployment_id: 'model_deployment_id', type: 'models_api' },
  knowledge_base_name: 'knowledge_base_name',
});

console.log(createKnowledgeBaseResponse.knowledge_base_id);
{
  "knowledge_base_id": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
embedding_config
object
required

The configuration of the embedding

knowledge_base_name
string
required

A unique name for the knowledge base

account_id
string

Account to create knowledge base in. If you have access to more than one account, you must specify an account_id

metadata
object

Metadata associated with the knowledge base

Response

Successful Response

knowledge_base_id
string
required

The unique ID of the created knowledge base