You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running a slightly modified version of farfalle, to be able to use a custom OpenAI compatable API I changed llm.llm = LiteLLM(model=llm.llm.model) to llm.llm = LiteLLM(model=llm.llm.model, api_base="http://192.168.73.78:5000/v1") it generates the answer but when trying to generate related_queries it errors with: 500: 'Message' object has no attribute 'tool_calls' I know that the version of llama3-8b I am using supports function calling, as it is working with openwebUI.
The text was updated successfully, but these errors were encountered:
I am running a slightly modified version of farfalle, to be able to use a custom OpenAI compatable API I changed
llm.llm = LiteLLM(model=llm.llm.model)
tollm.llm = LiteLLM(model=llm.llm.model, api_base="http://192.168.73.78:5000/v1")
it generates the answer but when trying to generate related_queries it errors with:500: 'Message' object has no attribute 'tool_calls'
I know that the version of llama3-8b I am using supports function calling, as it is working with openwebUI.The text was updated successfully, but these errors were encountered: