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
Hi @data-steve I believe I can help with this issue. I’m the maintainer of LiteLLM https://github.com/BerriAI/litellm - we allow you to use any LLM as a drop in replacement for gpt-3.5-turbo.
You can use LiteLLM in the following ways:
With your own API KEY:
This calls the provider API directly
fromlitellmimportcompletionimportos## set ENV variables os.environ["OPENAI_API_KEY"] ="your-key"# os.environ["COHERE_API_KEY"] ="your-key"# messages= [{ "content": "Hello, how are you?","role": "user"}]
# openai callresponse=completion(model="gpt-3.5-turbo", messages=messages)
# cohere callresponse=completion(model="command-nightly", messages=messages)
Using the LiteLLM Proxy with a LiteLLM Key
this is great if you don’t have access to claude but want to use the open source LiteLLM proxy to access claude
fromlitellmimportcompletionimportos## set ENV variables os.environ["OPENAI_API_KEY"] ="sk-litellm-5b46387675a944d2"# [OPTIONAL] replace with your openai keyos.environ["COHERE_API_KEY"] ="sk-litellm-5b46387675a944d2"# [OPTIONAL] replace with your cohere keymessages= [{ "content": "Hello, how are you?","role": "user"}]
# openai callresponse=completion(model="gpt-3.5-turbo", messages=messages)
# cohere callresponse=completion(model="command-nightly", messages=messages)
I just want to make a YA fantasy novel for my kids birthday in which she features as character. So it’s more one off.
But seems like you have to have a business or research reason to get closed access Claude api.
Can anyone help me out? Is Mosaic Storywriter a viable swap out? https://huggingface.co/mosaicml/mpt-7b-storywriter
The text was updated successfully, but these errors were encountered: