llmOS-Agent / src /config.py
minchyeom's picture
Add initial implementation of chat application with required dependencies
0e02b97
raw
history blame
244 Bytes
from __future__ import annotations
import os
from typing import Final
MODEL_NAME: Final[str] = os.getenv("OLLAMA_MODEL", "qwen3")
OLLAMA_HOST: Final[str] = os.getenv("OLLAMA_HOST", "http://localhost:11434")
MAX_TOOL_CALL_DEPTH: Final[int] = 5