This commit is contained in:
a2a-platform
2026-06-11 23:32:41 +00:00
parent 34675d168a
commit 61a5054b98
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
"language": "python",
"name": "robertseares",
"description": "A new A2A agent",
"version": "0.1.0",
"version": "0.1.1",
"entrypoint": {
"module": "agent",
"class_name": "Robertseares",
@@ -134,7 +134,7 @@
"source": "python-a2a-pack",
"project_manifest": {
"name": "robertseares",
"version": "0.1.0",
"version": "0.1.1",
"entrypoint": "agent:Robertseares",
"frontend": {
"type": "server-rendered",

View File

@@ -2,7 +2,7 @@
# secrets, workspace, etc.) lives on the Python class — this file only
# tells the CLI how to find it.
name: robertseares
version: 0.1.0
version: 0.1.1
entrypoint: agent:Robertseares
expose:
public: true

View File

@@ -46,7 +46,7 @@ DEEPAGENTS_RECURSION_LIMIT = 500
class Robertseares(A2AAgent[RobertsearesConfig, NoAuth]):
name = "robertseares"
description = "A new A2A agent"
version = "0.1.0"
version = "0.1.1"
config_model = RobertsearesConfig
auth_model = NoAuth