From 8888a2cf5d863b23eb4c5e1ea9b751d62115231f Mon Sep 17 00:00:00 2001 From: a2a-platform Date: Sat, 27 Jun 2026 17:13:34 +0000 Subject: [PATCH] deploy --- .a2a/agent.dsl.json | 4 ++-- a2a.yaml | 2 +- agent.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.a2a/agent.dsl.json b/.a2a/agent.dsl.json index 847f6d2..7ce838b 100644 --- a/.a2a/agent.dsl.json +++ b/.a2a/agent.dsl.json @@ -3,7 +3,7 @@ "language": "python", "name": "seleniumbase-website-scraper", "description": "SeleniumBase-style browser agent that turns observed website traffic into OpenAPI specs, coverage reports, samples, and a replay client.", - "version": "0.2.8", + "version": "0.2.9", "entrypoint": { "module": "agent", "class_name": "BrowserToApiAgent", @@ -381,7 +381,7 @@ "source": "python-a2a-pack", "project_manifest": { "name": "seleniumbase-website-scraper", - "version": "0.2.8", + "version": "0.2.9", "entrypoint": "agent:BrowserToApiAgent" } } diff --git a/a2a.yaml b/a2a.yaml index b5576a5..fb001a5 100644 --- a/a2a.yaml +++ b/a2a.yaml @@ -1,5 +1,5 @@ name: seleniumbase-website-scraper -version: 0.2.8 +version: 0.2.9 entrypoint: agent:BrowserToApiAgent expose: public: true diff --git a/agent.py b/agent.py index c78c255..bb6e2a6 100644 --- a/agent.py +++ b/agent.py @@ -129,7 +129,7 @@ class BrowserToApiAgent(A2AAgent[BrowserToApiConfig, NoAuth]): "SeleniumBase-style browser agent that turns observed website traffic " "into OpenAPI specs, coverage reports, samples, and a replay client." ) - version = "0.2.8" + version = "0.2.9" config_model = BrowserToApiConfig auth_model = NoAuth @@ -615,7 +615,7 @@ def _post_chat_completion(url: str, api_key: str, payload: dict[str, Any]) -> st url, data=json.dumps(payload).encode("utf-8"), headers={ - "authorization": f"Bearer {llm_config['api_key']}", + "authorization": f"Bearer {api_key}", "content-type": "application/json", }, method="POST",