Initial commit with translated description

This commit is contained in:
2026-03-29 13:18:55 +08:00
commit 60e6461707
11 changed files with 5944 additions and 0 deletions

20
test-auto-routing.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Test Auto-Routing Feature
# Tests various query types to verify routing works correctly
# Load from environment or .env file
if [ -f .env ]; then
source .env
fi
# Check required keys
if [ -z "$SERPER_API_KEY" ]; then
echo "Error: SERPER_API_KEY not set. Copy .env.example to .env and add your keys."
exit 1
fi
echo "Testing auto-routing..."
python3 scripts/search.py -q "buy iPhone 15 price" --auto
python3 scripts/search.py -q "how does quantum computing work" --auto
python3 scripts/search.py -q "companies like Stripe" --auto