From b718df5e8fab07e4b2745156d2925b6f9c1ffb82 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 21 Sep 2023 11:18:12 -0700 Subject: [PATCH] docs --- docs/my-website/docs/providers/ollama.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/my-website/docs/providers/ollama.md b/docs/my-website/docs/providers/ollama.md index ab6210221..25a6a1ce0 100644 --- a/docs/my-website/docs/providers/ollama.md +++ b/docs/my-website/docs/providers/ollama.md @@ -24,8 +24,7 @@ from litellm import completion response = completion( model="ollama/llama2", messages=[{ "content": "respond in 20 words. who are you?","role": "user"}], - api_base="http://localhost:11434", - custom_llm_provider="ollama", + api_base="http://localhost:11434", stream=True ) print(response)