Documentation Index
Fetch the complete documentation index at: https://docs.upsonic.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Ollama allows you to run large language models locally on your machine. Perfect for development, testing, and privacy-sensitive applications. Model Class:OpenAIChatModel (OpenAI-compatible API)
Authentication
Examples
Model Settings
You can set model parameters in two ways: on the model or on the Agent. On the model:Parameters
| Parameter | Type | Description | Default | Source |
|---|---|---|---|---|
max_tokens | int | Maximum tokens to generate | Model default | Base |
temperature | float | Sampling temperature | 0.8 | Base |
top_p | float | Nucleus sampling | 0.9 | Base |
seed | int | Random seed | None | Base |
stop_sequences | list[str] | Stop sequences | None | Base |

