Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
23 lines
594 B
Bash
Executable File
23 lines
594 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Debug script for running ablation with detailed API logging
|
|
|
|
echo "🔍 Running ablation study with API debugging enabled"
|
|
echo "=================================================="
|
|
|
|
# Enable litellm debugging
|
|
export LITELLM_LOG="DEBUG"
|
|
export DEBUG_API_CALLS="true"
|
|
|
|
# Also enable curl command logging to see exact requests
|
|
export LITELLM_PRINT_VERBOSE="true"
|
|
|
|
echo "✅ Debug settings enabled:"
|
|
echo " - LITELLM_LOG=DEBUG"
|
|
echo " - DEBUG_API_CALLS=true"
|
|
echo " - LITELLM_PRINT_VERBOSE=true"
|
|
echo ""
|
|
|
|
# Run the ablation with all provided arguments
|
|
python run_ablation.py "$@"
|