We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed98d79 commit 87c4f07Copy full SHA for 87c4f07
.github/workflows/test-mcp-server.yml
@@ -409,9 +409,13 @@ jobs:
409
# Set USE_MOCK_LLM=true in environment for this command
410
export USE_MOCK_LLM=true
411
412
+ # Add a dummy API key for the public node to bypass validation
413
+ export LLM_API_KEY="dummy_key_for_public_node"
414
+
415
# Add debug output to see what's being used
416
echo "LLM_API_BASE: $LLM_API_BASE"
417
echo "USE_MOCK_LLM: $USE_MOCK_LLM"
418
+ echo "LLM_API_KEY is set to a dummy value for the public node"
419
420
# Redirect output to log file for debugging
421
python -m uvicorn app.main:app --host 0.0.0.0 --port 8000 > server.log 2>&1 &
0 commit comments