Hi,
I noticed a few people trying to access new / run larger LLMs than their computers could support:
- claude-2
- Llama-2-70b
- CodeLlama
etc.
So I hosted a proxy API to give people access to these models (~20 hosted models) through my keys.
Tutorial for how to add to openinterpreter: https://docs.litellm.ai/docs/proxy_api
Note: You will need to clone and modify the Github repo, until this PR is merged.
git clone https://github.com/krrishdholakia/open-interpreter-litellm-fork
To run it do:
poetry build
# call gpt-4 - always add 'litellm_proxy/' in front of the model name
poetry run interpreter --model litellm_proxy/gpt-4
# call llama-70b - always add 'litellm_proxy/' in front of the model name
poetry run interpreter --model litellm_proxy/togethercomputer/llama-2-70b-chat
# call claude-2 - always add 'litellm_proxy/' in front of the model name
poetry run interpreter --model litellm_proxy/claude-2