🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
빈 knowledge base를 생성합니다. 생성 후 text, webpage, file document를 추가합니다.
curl --request POST \
--url https://client-api.tryvox.co/v3/knowledges \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": 123,
"name": "<string>",
"created_at": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
knowledge base 생성 요청입니다. name은 에이전트 설정과 목록 응답에 표시됩니다.
knowledge 생성 요청입니다(POST /v3/knowledges).
name은 공백 제거 후 1자 이상이어야 합니다. 빈 문자열이나 공백만 입력하면 400을 반환합니다. 정의되지 않은 필드를 보내도 400을 반환합니다(extra=forbid).
knowledge base 의 이름. 공백을 제외하고 1자 이상, 255자 이하.
1 - 255Was this page helpful?
curl --request POST \
--url https://client-api.tryvox.co/v3/knowledges \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": 123,
"name": "<string>",
"created_at": 123
}