v2.0 : Error processing request: No vector store provided. Please provide a vector store to train the agent. #973
Replies: 1 comment
-
I encountered this problem when training, and I used openai api key. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wanted to test the training feature in v2.0 but I am getting the following error :
Error processing request: No vector store provided. Please provide a vector store to train the agent.
I am using AzureOpenAI as the llm. Here is the code :
df = Agent(data_frames, config={
"llm": llm,
"enable_cache": False,
"enforce_privacy": True,
"open_charts": False,
"response_parser": PandasDataFrame
})
df.train(docs = "boq attainment percent is calculated as 'Total Boq-Actual/Total Boq-Plan'")
Beta Was this translation helpful? Give feedback.
All reactions