9 lines
259 B
Python
9 lines
259 B
Python
"""Client utilities for interacting with the Ollama API."""
|
|
|
|
|
|
class OllamaClient:
|
|
"""Placeholder client used until streaming integration is built."""
|
|
|
|
def __init__(self) -> None:
|
|
raise NotImplementedError("Ollama client not implemented yet.")
|