From 437c2b231644e7aebdbf2dbccfed78b3cdfdc149 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 15 Sep 2023 15:05:19 -0700 Subject: [PATCH] update docs --- docs/my-website/docs/proxy_api.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/my-website/docs/proxy_api.md b/docs/my-website/docs/proxy_api.md index 1de96a2cb..4535c8f3d 100644 --- a/docs/my-website/docs/proxy_api.md +++ b/docs/my-website/docs/proxy_api.md @@ -63,7 +63,11 @@ litellm.api_base = "https://proxy.litellm.ai" and change the model on [this line](https://github.com/KillianLucas/open-interpreter/blob/f803d0d7a545edabd541943145a2a60beaf604e4/interpreter/interpreter.py#L342C10-L342C10), to: ```python +# call gpt-4 self.model = "openai/gpt-4" # 👈 always add 'openai/' in front of the model name + +# call togethercomputer/llama-2-70b-chat +self.model = "openai/togethercomputer/llama-2-70b-chat" # 👈 always add 'openai/' in front of the model name ``` And that's it!