Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trouble with litellm proxy #110

Open
goodb opened this issue Nov 15, 2024 · 6 comments
Open

trouble with litellm proxy #110

goodb opened this issue Nov 15, 2024 · 6 comments

Comments

@goodb
Copy link

goodb commented Nov 15, 2024

I'm attempting to use an azure-hosted chatgpt model with curateGPT via the litellm proxy system.
I have the proxy running and tested and the LLM package underlying curateGPT successfully using it, but when I try curateGPT it keeps asking for an openai key. It seems to be ignoring the -m option ???

Thanks for any tips and for this very helpful piece of work! Go Berkeley Bop :). And thanks to @justaddcoffee for pointing me here.

(showing I do have the proxy working and my local llm talking to it)
(curategpt-py3.10) (base) bgood@MacBook-Pro-5 curategpt % llm -m azure/gpt-4o-azure "what is the capital of canada?"
The capital of Canada is Ottawa.

(but curategpt not working with it)

(curategpt-py3.10) (base) bgood@MacBook-Pro-5 curategpt % curategpt ask -m azure/gpt-4o-azure -c ont_cl "What neurotransmitter is released by the hippocampus?"
Traceback (most recent call last):
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/bin/curategpt", line 6, in
sys.exit(main())
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/click/core.py", line 1157, in call
return self.main(*args, **kwargs)
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/click/core.py", line 1078, in main
rv = self.invoke(ctx)
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/click/core.py", line 1688, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/click/core.py", line 1434, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/click/core.py", line 783, in invoke
return __callback(*args, **kwargs)
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/cli.py", line 1852, in ask
response = chatbot.chat(query, collection=collection, conversation=conversation)
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/agents/chat_agent.py", line 92, in chat
kb_results = list(
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/store/chromadb_adapter.py", line 426, in search
yield from self._search(text=text, **kwargs)
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/store/chromadb_adapter.py", line 441, in _search
yield from self.diversified_search(
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/store/chromadb_adapter.py", line 561, in diversified_search
ef = self._embedding_function(metadata.venomx.embedding_model.name)
File "/Users/bgood/Documents/GitHub/curategpt/src/curategpt/store/chromadb_adapter.py", line 129, in _embedding_function
return embedding_functions.OpenAIEmbeddingFunction(
File "/Users/bgood/Library/Caches/pypoetry/virtualenvs/curategpt-ZGKDA_LV-py3.10/lib/python3.10/site-packages/chromadb/utils/embedding_functions.py", line 160, in init
raise ValueError(
ValueError: Please provide an OpenAI API key. You can get one at https://platform.openai.com/account/api-keys

@caufieldjh
Copy link
Member

Hi @goodb!
This may be a case where you can use a workaround of setting a blank or dummy OpenAI API key:

export OPENAI_API_KEY=""

The ChromaDB embedding utility is what's asking for the API key here, and that may need to be explicitly told this is an Azure endpoint since Azure will expect a value for the API version along with the other details (i.e., the URL base and the headers).
Ideally, litellm handles all of this, but something may be lost in translation between the proxy and the database.

Another potential workaround - use duckdb instead of chromadb with the --database-type duckdb option.

@caufieldjh
Copy link
Member

In practice this shouldn't raise an error at all and should just attempt to use the provided model in the same way as it would use an OpenAI API endpoint, so I'll look into that

@goodb
Copy link
Author

goodb commented Nov 15, 2024

Thanks @caufieldjh ! Adding
export OPENAI_API_KEY=""
results in a different error so we are getting somewhere. Now I see

openai.APIConnectionError: Connection error.

originating in the same call from chat_agent.py at line 92

I will try duckdb next as suggested.

@caufieldjh
Copy link
Member

Does your Azure endpoint have its own API key?

@goodb
Copy link
Author

goodb commented Nov 15, 2024

Yes, the azure endpoint has its own key and endpoint.

@goodb
Copy link
Author

goodb commented Nov 16, 2024

Trying to get duckdb loaded is proving challenging.

ontology index -p stagedb/duck.db -c ont-hp sqlite:obo:hp -D duckdb

results in error
duckdb.duckdb.BinderException: Binder Error: HNSW index 'metric' must be one of: 'ip', 'cosine', 'l2sq'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

When branches are created from issues, their pull requests are automatically linked.

2 participants