From 610b35391d27055c9a9d3312b04702550f64a82b Mon Sep 17 00:00:00 2001 From: RMNCLDYO <153027766+RMNCLDYO@users.noreply.github.com> Date: Sun, 5 May 2024 14:03:54 -0400 Subject: [PATCH] Update README.md - Changed default model from `search` to `chat` in examples. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b19883..2d120eb 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ Search().run(query="What is today's date?") | Online search query | `-q`, `--query` | --query "What is today's date?" | query="What is today's date?" | | User prompt | `-p`, `--prompt` | --prompt "How many stars are there in our galaxy?" | prompt="How many stars are there in our galaxy?" | | API key for authentication | `-a`, `--api_key` | --api_key your_api_key | api_key="your_api_key" | -| Model name | `-m`, `--model` | --model "llama-3-sonar-large-32k-online" | model="llama-3-sonar-large-32k-online" | +| Model name | `-m`, `--model` | --model "llama-3-sonar-large-32k-chat" | model="llama-3-sonar-large-32k-chat" | | Enable streaming mode | `-st`, `--stream` | --stream | stream=True | | System prompt (instructions) | `-sp`, `--system_prompt` | --system_prompt "Be precise and concise." | system_prompt="Be precise and concise." | | Maximum tokens to generate | `-mt`, `--max_tokens` | --max_tokens 100 | max_tokens=100 |