-
Notifications
You must be signed in to change notification settings - Fork 0
voice-to-mermaid: remove vtm-ollama sidecar, default qwen3:8b #8
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,21 +1,18 @@ | ||||||||||
| services: | ||||||||||
| ollama: | ||||||||||
| image: ollama/ollama:latest | ||||||||||
| container_name: vtm-ollama | ||||||||||
| restart: unless-stopped | ||||||||||
| ports: | ||||||||||
| - "11434:11434" | ||||||||||
| volumes: | ||||||||||
| - ollama-data:/root/.ollama | ||||||||||
| # GPU support — remove 'deploy' block if no GPU available | ||||||||||
| deploy: | ||||||||||
| resources: | ||||||||||
| reservations: | ||||||||||
| devices: | ||||||||||
| - driver: nvidia | ||||||||||
| count: 1 | ||||||||||
| capabilities: [gpu] | ||||||||||
| # Voice-to-Mermaid — LOCAL MACHINE ONLY (requires GPU) | ||||||||||
| # ⚠️ GPU GUARD: This compose file requires NVIDIA GPU hardware. | ||||||||||
| # ⚠️ DO NOT deploy to the VPS (187.77.216.108) — it has no GPU. | ||||||||||
|
||||||||||
| # ⚠️ DO NOT deploy to the VPS (187.77.216.108) — it has no GPU. | |
| # ⚠️ DO NOT deploy to the VPS — it has no GPU. |
Copilot
AI
Apr 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment references infrastructure/local/README.md, but that path does not exist in the repository. Please update the pointer to an existing doc path or remove the reference to avoid broken guidance.
| # ⚠️ See infrastructure/local/README.md for local machine service registry. | |
| # ⚠️ Local machine only: keep service guidance in repository docs up to date. |
Copilot
AI
Apr 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment points to .agents/runbooks/troubleshoot-ollama/SKILL.md, but there is no .agents directory in the repo. Please update to an existing runbook location or remove the reference so readers can actually find the architecture rules.
| # See .agents/runbooks/troubleshoot-ollama/SKILL.md for the single-instance | |
| # architecture rules. | |
| # Keep this as a single-instance setup: use the existing Windows-native | |
| # Ollama service and do not reintroduce a Compose-managed Ollama sidecar here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment uses a user-specific Windows path (C:\Users\jaewi...) and a specific drive letter for OLLAMA_MODELS. Consider making this guidance portable (e.g., %USERPROFILE%\.ollama, or describing how to locate/set OLLAMA_MODELS) so it applies to other developers/machines.