Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/a2a.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
check:
name: Format & Type Check
runs-on: ubuntu-latest
env:
UV_PYTHON: "3.13"

defaults:
run:
Expand All @@ -28,6 +30,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/adk-cerebras.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
check:
name: Format & Type Check
runs-on: ubuntu-latest
env:
UV_PYTHON: "3.13"

defaults:
run:
Expand All @@ -28,6 +30,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/adk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
check:
name: Format & Type Check
runs-on: ubuntu-latest
env:
UV_PYTHON: "3.13"

defaults:
run:
Expand All @@ -28,6 +30,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
Expand Down
5 changes: 3 additions & 2 deletions a2a/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
FROM python:3.13-slim AS base

ENV PYTHONUNBUFFERED=1
ENV UV_PROJECT_ENVIRONMENT=/app/.venv
ENV PATH="/app/.venv/bin:$PATH"
RUN pip install uv

WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN --mount=type=cache,target=/root/.cache/uv \
UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy \
uv pip install --system . && \
rm -fr build dist *.egg-info
uv sync --locked --no-dev --no-install-project
COPY main.py src ./
RUN python -m compileall -q .

Expand Down
2 changes: 1 addition & 1 deletion a2a/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [
"click>=8.2.1",
"google-adk>=1.4.2",
"google-genai>=1.21.1",
"litellm>=1.73.0",
"litellm==1.73.0",
"mcp>=1.9.4",
"openai>=1.88.0",
"pydantic>=2.11.7",
Expand Down
2 changes: 1 addition & 1 deletion a2a/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion adk-cerebras/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk>=1.5.0",
"litellm>=1.73.6",
"litellm==1.73.6",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion adk-cerebras/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions adk-sock-shop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Use Python 3.11 slim image as base
# Use Python 3.13 slim image as base
FROM python:3.13-slim
ENV PYTHONUNBUFFERED=1
ENV UV_PROJECT_ENVIRONMENT=/app/.venv
ENV PATH="/app/.venv/bin:$PATH"

RUN pip install uv

WORKDIR /app
# Install system dependencies
COPY pyproject.toml uv.lock ./
RUN --mount=type=cache,target=/root/.cache/uv \
UV_COMPILE_BYTECODE=1 uv pip install --system .
UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy \
uv sync --locked --no-dev --no-install-project
# Copy application code
COPY agents/ ./agents/
RUN python -m compileall -q .
Expand Down
2 changes: 1 addition & 1 deletion adk-sock-shop/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk>=1.5.0",
"litellm>=1.73.2",
"litellm==1.73.2",
"streamlit>=1.31.0",
"requests>=2.31.0",
"fastapi>=0.100.0",
Expand Down
2 changes: 1 addition & 1 deletion adk-sock-shop/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions adk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Use Python 3.11 slim image as base
# Use Python 3.13 slim image as base
FROM python:3.13-slim
ENV PYTHONUNBUFFERED=1
ENV UV_PROJECT_ENVIRONMENT=/app/.venv
ENV PATH="/app/.venv/bin:$PATH"

RUN pip install uv

Expand All @@ -9,8 +11,7 @@ WORKDIR /app
COPY pyproject.toml uv.lock ./
RUN --mount=type=cache,target=/root/.cache/uv \
UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy \
uv pip install --system . && \
rm -fr build dist *.egg-info
uv sync --locked --no-dev --no-install-project
# Copy application code
COPY agents/ ./agents/
RUN python -m compileall -q .
Expand Down
2 changes: 1 addition & 1 deletion adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"google-adk>=1.5.0",
"litellm>=1.73.2",
"litellm==1.73.2",
]

[dependency-groups]
Expand Down
2 changes: 1 addition & 1 deletion adk/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading