chore: bootstrap project scaffold

This commit is contained in:
Melvin Ragusa
2025-10-24 20:12:51 +02:00
commit f5afb00a5b
15 changed files with 871 additions and 0 deletions

8
ollama_client.py Normal file
View File

@@ -0,0 +1,8 @@
"""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.")