Chat Agent - company documents vs existing LLM

Is it possible to use / upload company documents to use as the AI Agents LLM model? We do not currently utilize openAI or other models and would like to use several company propriety PDF or word documents as the knowledge base for the chat agent to use to answer any questions that come in.

I didn’t see any way to do this. Possible?

The documents are stored in Azure Blob storage container …FYI

Absolutely,

  • set up an Azure Blob Storage node to pull the files
  • extract the text with a document loader,
  • connect to the AI Agent’s memory .

Thank you . I’m still stuck on how to connect the AI agent to the extracted document as the LLM since that is a required fie.d

This is not right way. If you pass all documents as input agent will be overwhelmed by large amount of data.
What you can do is after extracting your data you should make a vector store use pine cone or simple vector store and connect that as a tool to agent.
Like in this example:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.