Questions & Answers
Create Q&A
import * as Ragg from '@ragg/node-sdk'
const ragg = Ragg.init(<API_KEY>)
const result = await ragg.qa.createQuestionAnswer({
workspaceId: string,
question: "How can I configure my account?",
answer: "You can configure your account by going on this page...",
});
console.log(result.data);
// { questionId: string, answerId: string, qaId: string }List Q&A
Last updated