Spaces:
Runtime error
Runtime error
File size: 244 Bytes
0e02b97 |
1 2 3 4 5 6 7 8 |
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 |