feat: add test agent, python sdk, and external traffic validator
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 9s

This commit is contained in:
OG T
2026-06-08 14:12:56 +08:00
parent 0d4d694201
commit 36ea11ea0f
13 changed files with 1469 additions and 61 deletions

View File

@@ -0,0 +1,20 @@
from .client import VibeWorkAgentSDK, VibeWorkApiError
from .models import (
AgentCard,
ClaimTaskResponse,
ClaimTaskRequest,
SubmitSolutionRequest,
SubmitSolutionResponse,
TaskBounty,
)
__all__ = [
"VibeWorkAgentSDK",
"VibeWorkApiError",
"AgentCard",
"ClaimTaskRequest",
"ClaimTaskResponse",
"SubmitSolutionRequest",
"SubmitSolutionResponse",
"TaskBounty",
]