// Create Assistant (POST /assistant) const respon...
# general-english
k
// Create Assistant (POST /assistant) const response = await fetch("https://api.vapi.ai/assistant", { method: "POST", headers: { "Authorization": "Bearer wfeg2s3bae-414a-4tpkbsd8-ae3b-d8sdvsdfb", "Content-Type": "application/json" }, body: JSON.stringify({ "model": { "provider": "openai", "model": "gpt-3.5-turbo-0125", "knowledgeBaseId": "ca6c4605-203d-4bc0-a18b-sgdrgsdsdvc" } }), }); const body = await response.json(); console.log(body);````````can anyone explain why knowledgebase(pdf) is not assigning to ai agent which i am creating through api @User