- Introduce event-driven streaming with thinking_start, thinking_end, and warn events; skip sending analysis content to clients - Add /api/warn endpoint to dispatch warnings for sessions and channels; web UI displays alerts - Emit session_start/session_end events over WebSocket and instrument logging throughout orchestration - Update web client: show thinking indicator and warning banners; switch LiveKit client URL to CDN - Extend BotOrchestrator with send_event and send_warning, expand session/tool workflow - Improve REST endpoints for sessions/history with better logging and error handling - Update docs and prompts: DEV.md usage note; adjust dev build_prompt script
59 lines
1.4 KiB
Bash
Executable file
59 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
OUTPUT_FILE="$SCRIPT_DIR/prompt.out"
|
|
rm $OUTPUT_FILE
|
|
echo "Consolidated LLM Context" > "$OUTPUT_FILE"
|
|
|
|
prompts=(
|
|
"../../prompts/dev/shared.md"
|
|
"../../Cargo.toml"
|
|
#../../prompts/dev/fix.md"
|
|
"../../prompts/dev/generation.md"
|
|
)
|
|
|
|
for file in "${prompts[@]}"; do
|
|
cat "$file" >> "$OUTPUT_FILE"
|
|
echo "" >> "$OUTPUT_FILE"
|
|
done
|
|
|
|
dirs=(
|
|
#"auth"
|
|
#"automation"
|
|
#"basic"
|
|
"bot"
|
|
"channels"
|
|
#"config"
|
|
#"context"
|
|
#"email"
|
|
#"file"
|
|
"llm"
|
|
#"llm_legacy"
|
|
#"org"
|
|
"session"
|
|
"shared"
|
|
#"tests"
|
|
#"tools"
|
|
#"web_automation"
|
|
"whatsapp"
|
|
)
|
|
for dir in "${dirs[@]}"; do
|
|
find "$PROJECT_ROOT/src/$dir" -name "*.rs" | while read file; do
|
|
echo $file >> "$OUTPUT_FILE"
|
|
cat "$file" >> "$OUTPUT_FILE"
|
|
echo "" >> "$OUTPUT_FILE"
|
|
done
|
|
done
|
|
|
|
# Also append the specific files you mentioned
|
|
cat "$PROJECT_ROOT/src/main.rs" >> "$OUTPUT_FILE"
|
|
# cat "$PROJECT_ROOT/src/basic/keywords/hear_talk.rs" >> "$OUTPUT_FILE"
|
|
# cat "$PROJECT_ROOT/src/basic/keywords/get.rs" >> "$OUTPUT_FILE"
|
|
cat "$PROJECT_ROOT/src/basic/keywords/llm_keyword.rs" >> "$OUTPUT_FILE"
|
|
# cat "$PROJECT_ROOT/src/basic/mod.rs" >> "$OUTPUT_FILE"
|
|
|
|
|
|
echo "" >> "$OUTPUT_FILE"
|
|
|
|
# cargo build --message-format=short 2>&1 | grep -E 'error' >> "$OUTPUT_FILE"
|