How to do assistant training with a FAQ file?

I have code in Python that makes calls using the openai library passing the assistant_id. To improve my assistant’s responses, I would like to train him with a FAQ file. How can I do this?

Hello,

You have to upload your FAQ as a file in the platform and enable file search for your assistant.

https://platform.openai.com/docs/assistants/tools/file-search/quickstart

@JoaoFinanceira - Welcome to the forums!

I see you have mentioned training - I’m guessing you meant fine-tuning . Other things aside, I would highly suggest you check out and evaluate using Retrieval-Augmented Generation (RAG) and then make a decision if you still need to fine-tune your GPT. You may achieve decent results with a good system prompt, chunking, good retrievers and tool_calls. Hope this helps - Cheers :smiley: