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'm real tired of OpenAI/Groq/... API keys and having to call their APIs over the net. Is there any way to spin up a local LLM/Vision Model and direct the queries to that?
The text was updated successfully, but these errors were encountered:
The easiest way in the current setup is to use vLLM (https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html) to locally load and host a model on your machine. After this you can use the LMMEnginevLLM by passing the required engine_params and setting the vLLM_ENDPOINT_URL to the locally hosted model.
Export the vLLM_ENDPOINT_URL:
export vLLM_ENDPOINT_URL=YOUR_URL_ADDRESS
Specify engine params to use vllm before instantiating the GraphSearchAgent
I'm real tired of OpenAI/Groq/... API keys and having to call their APIs over the net. Is there any way to spin up a local LLM/Vision Model and direct the queries to that?
The text was updated successfully, but these errors were encountered: