Skip to content

Commit 34c8abf

Browse files
Fix: hard code genai protocol version to 1.0.9 (#40)
* Fix: hard code genai protocol version to 1.0.9
1 parent 05a816a commit 34c8abf

11 files changed

Lines changed: 741 additions & 741 deletions

File tree

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Python Backend for GenAI Agentos infrastructure"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol",
8+
"genai-protocol==1.0.9",
99
"alembic>=1.15.1",
1010
"asyncpg>=0.30.0",
1111
"fastapi>=0.115.12",

backend/uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

genai_agents_example/get_current_date_agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol>=1.0.9",
8+
"genai-protocol==1.0.9",
99
]

genai_agents_example/get_weather_agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol>=1.0.9",
8+
"genai-protocol==1.0.9",
99
"python-dotenv>=1.1.0",
1010
"requests>=2.32.3",
1111
]

genai_agents_example/read_txt_file_agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol>=1.0.9",
8+
"genai-protocol==1.0.9",
99
]

genai_agents_example/save_file_agents/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol>=1.0.9",
8+
"genai-protocol==1.0.9",
99
]

genai_agents_example/translate_text_agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"genai-protocol>=1.0.9",
8+
"genai-protocol==1.0.9",
99
"openai>=1.97.0",
1010
"python-dotenv>=1.1.1"
1111
]

master-agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Python Master Agent for GenAI Agentos infrastructure"
55
requires-python = ">=3.12"
66
dependencies = [
77
"a2a-sdk>=0.2.5",
8-
"genai-protocol",
8+
"genai-protocol==1.0.9",
99
"httpx>=0.28.1",
1010
"jmespath>=1.0.1",
1111
"langchain>=0.3.21",

master-agent/uv.lock

Lines changed: 725 additions & 725 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies = [
1515
"attrs>=25.3.0",
1616
"faker>=37.1.0",
1717
"frozenlist>=1.6.0",
18-
"genai-protocol",
18+
"genai-protocol==1.0.9",
1919
"google-adk>=1.2.1",
2020
"google-genai>=1.19.0",
2121
"greenlet>=3.2.3",

0 commit comments

Comments
 (0)