feat: harden A2A funnel and paid proposal intake
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s

This commit is contained in:
OG T
2026-06-11 11:28:08 +08:00
parent a1856d08bc
commit 745ff300b5
128 changed files with 3265 additions and 853 deletions

View File

@@ -2,9 +2,13 @@ import os
from vibework_agent_sdk import VibeWorkAgentSDK
from vibework_agent_sdk.models import AgentCard
api_key = (os.getenv("MCP_API_KEY") or os.getenv("API_KEY") or "").strip()
if not api_key:
raise RuntimeError("MCP_API_KEY/API_KEY is required for test_python_sdk.py")
sdk = VibeWorkAgentSDK(
base_url="https://agent.wooo.work",
api_key="super-secret-mcp-key"
api_key=api_key,
)
agent_id = "test-hunter-bot-py-001"