-
Notifications
You must be signed in to change notification settings - Fork 25
Fix deepgram/parakeet workers bug #199
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
ddec370
d25c341
ef98703
6bb8ff8
5e2220b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -108,5 +108,5 @@ services: | |
| # Shared network for cross-project communication | ||
| networks: | ||
| default: | ||
| name: friend-network | ||
| name: chronicle-network | ||
| external: true | ||
|
Comment on lines
+111
to
112
Contributor
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Search for docker-compose files and look for chronicle-network
echo "=== Finding docker-compose files ==="
find . -name "docker-compose*.yml" -o -name "docker-compose*.yaml" | head -20
echo -e "\n=== Searching for chronicle-network in compose files ==="
rg -l "chronicle-network" -t yaml
echo -e "\n=== Examining network definitions ==="
rg "networks:" -A 5 -t yaml | head -50
echo -e "\n=== Looking for documentation about startup order ==="
find . -name "*.md" -o -name "*.txt" -o -name "README*" | xargs grep -l "startup\|start.*backend\|chronicle-network" 2>/dev/null | head -10Repository: chronicler-ai/chronicle Length of output: 3238 🏁 Script executed: #!/bin/bash
# Check documentation files for startup order guidance
echo "=== Checking getting-started.md ==="
grep -i "startup\|start.*backend\|docker.*compose\|order\|first\|second" ./Docs/getting-started.md | head -15
echo -e "\n=== Checking quickstart.md ==="
grep -i "startup\|start.*backend\|docker.*compose\|order\|first\|second" ./backends/advanced/Docs/quickstart.md | head -15
echo -e "\n=== Checking README.md ==="
grep -i "startup\|start.*backend\|docker.*compose\|order\|first\|second" ./README.md | head -15
echo -e "\n=== Full content of getting-started.md (first 100 lines) ==="
head -100 ./Docs/getting-started.md
echo -e "\n=== Checking if speaker-recognition or extras are mentioned in getting-started ==="
grep -i "speaker\|extras\|asr\|recognition" ./Docs/getting-started.mdRepository: chronicler-ai/chronicle Length of output: 5977 🏁 Script executed: #!/bin/bash
# Check the specific lines 111-112 in speaker-recognition/docker-compose.yml
echo "=== Lines 111-112 of extras/speaker-recognition/docker-compose.yml ==="
sed -n '110,115p' ./extras/speaker-recognition/docker-compose.yml
echo -e "\n=== Context around network definition (lines 105-115) ==="
sed -n '105,115p' ./extras/speaker-recognition/docker-compose.yml
echo -e "\n=== Network definition in backends/advanced/docker-compose.yml ==="
grep -A 3 "^networks:" ./backends/advanced/docker-compose.yml
echo -e "\n=== Verify backends/advanced network does NOT have external: true ==="
grep -A 3 "^networks:" ./backends/advanced/docker-compose.yml | grep -i external || echo "No 'external' keyword found - network is created by this compose file"Repository: chronicler-ai/chronicle Length of output: 665 Document the chronicle-network external dependency requirement. The 🤖 Prompt for AI Agents |
||
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 external
chronicle-networkdependency requires backend services to start first.The
chronicle-networkis markedexternal: true, which means this compose file depends on the network being pre-created by backend services. This matches the pattern inextras/speaker-recognition/docker-compose.ymland creates an implicit service startup order requirement. Users must start the backend services before runningdocker compose upin this directory.🤖 Prompt for AI Agents