docs: Update model reference in LLM configuration (#2267)

Co-authored-by: Brandon Hancock (bhancock_ai) <109994880+bhancockio@users.noreply.github.com>
This commit is contained in:
Matisse
2025-03-21 15:12:26 -04:00
committed by GitHub
parent 0a116202f0
commit bb3829a9ed

View File

@@ -491,7 +491,7 @@ In this section, you'll find detailed examples that help you select, configure,
<Accordion title="Ollama (Local LLMs)"> <Accordion title="Ollama (Local LLMs)">
1. Install Ollama: [ollama.ai](https://ollama.ai/) 1. Install Ollama: [ollama.ai](https://ollama.ai/)
2. Run a model: `ollama run llama2` 2. Run a model: `ollama run llama3`
3. Configure: 3. Configure:
```python Code ```python Code
@@ -786,5 +786,10 @@ Learn how to get the most out of your LLM configuration:
<Tip> <Tip>
Use larger context models for extensive tasks Use larger context models for extensive tasks
</Tip> </Tip>
```python
# Large context model
llm = LLM(model="openai/gpt-4o") # 128K tokens
```
</Tab> </Tab>
</Tabs> </Tabs>