-
Notifications
You must be signed in to change notification settings - Fork 2
feat(yt): expose OLLAMA_URL and YT_SUMMARY_OLLAMA_MODEL to pmoves-yt #1646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 |
|---|---|---|
|
|
@@ -1896,6 +1896,9 @@ services: | |
| - YT_WHISPER_MODEL=${YT_WHISPER_MODEL:-small} | ||
| - YT_TRANSCRIPT_DIARIZE=${YT_TRANSCRIPT_DIARIZE:-false} | ||
| - YT_CHANNEL_CHECK_INTERVAL=${YT_CHANNEL_CHECK_INTERVAL:-3600} | ||
| - OLLAMA_URL=${OLLAMA_URL:-http://pmoves-ollama:11434} | ||
| - YT_SUMMARY_PROVIDER=${YT_SUMMARY_PROVIDER:-ollama} | ||
| - YT_SUMMARY_OLLAMA_MODEL=${YT_SUMMARY_OLLAMA_MODEL:-gemma2:9b-instruct} | ||
|
Comment on lines
+1899
to
+1901
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This only updates the monolithic compose file, but the documented overlay path uses Useful? React with 👍 / 👎. |
||
| - DOCKED_MODE=${DOCKED_MODE:-true} | ||
| - TOPOLOGY_MODE=${TOPOLOGY_MODE:-docked} | ||
| - PARENT_SYSTEM=${PARENT_SYSTEM:-PMOVES.AI} | ||
|
|
||
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.
With the new default
OLLAMA_URL=http://pmoves-ollama:11434, a user who follows the existingmake up-ytpath still gets a broken summary endpoint: that target explicitly starts onlybgutil-pot-provider ffmpeg-whisper pmoves-yt, andpmoves-ytonly depends on MinIO and NATS, so Compose will not startpmoves-ollama. In that default configuration,/yt/summarizeand/yt/chaptersresolve a service name that is not running unless the operator separately starts Ollama or overrides the URL; addpmoves-ollamato the relevant startup path/dependency or avoid defaulting to an in-stack service that is not brought up.Useful? React with 👍 / 👎.