Skip to content

Commit 2c757fd

Browse files
committed
fixing the other agents
1 parent 5bb75f2 commit 2c757fd

File tree

15 files changed

+74
-74
lines changed

15 files changed

+74
-74
lines changed

examples/tutorials/10_agentic/00_base/000_hello_acp/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323
ENV UV_HTTP_TIMEOUT=1000
2424

2525
# Copy pyproject.toml and README.md to install dependencies
26-
COPY 000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
27-
COPY 000_hello_acp/README.md /app/000_hello_acp/README.md
26+
COPY 10_agentic/00_base/000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
27+
COPY 10_agentic/00_base/000_hello_acp/README.md /app/000_hello_acp/README.md
2828

2929
WORKDIR /app/000_hello_acp
3030

3131
# Copy the project code
32-
COPY 000_hello_acp/project /app/000_hello_acp/project
32+
COPY 10_agentic/00_base/000_hello_acp/project /app/000_hello_acp/project
3333

3434
# Copy the test files
35-
COPY 000_hello_acp/tests /app/000_hello_acp/tests
35+
COPY 10_agentic/00_base/000_hello_acp/tests /app/000_hello_acp/tests
3636

3737
# Copy shared test utilities
3838
COPY test_utils /app/test_utils

examples/tutorials/10_agentic/00_base/000_hello_acp/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 000_hello_acp
26-
- ../../test_utils
25+
- 10_agentic/00_base/000_hello_acp
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 000_hello_acp/Dockerfile
31+
dockerfile: 10_agentic/00_base/000_hello_acp/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 000_hello_acp/.dockerignore
36+
dockerignore: 10_agentic/00_base/000_hello_acp/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/00_base/010_multiturn/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 010_multiturn
26-
- ../../test_utils
25+
- 10_agentic/00_base/010_multiturn
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 010_multiturn/Dockerfile
31+
dockerfile: 10_agentic/00_base/010_multiturn/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 010_multiturn/.dockerignore
36+
dockerignore: 10_agentic/00_base/010_multiturn/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/00_base/020_streaming/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 020_streaming
26-
- ../../test_utils
25+
- 10_agentic/00_base/020_streaming
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 020_streaming/Dockerfile
31+
dockerfile: 10_agentic/00_base/020_streaming/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 020_streaming/.dockerignore
36+
dockerignore: 10_agentic/00_base/020_streaming/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/00_base/030_tracing/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 030_tracing
26-
- ../../test_utils
25+
- 10_agentic/00_base/030_tracing
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 030_tracing/Dockerfile
31+
dockerfile: 10_agentic/00_base/030_tracing/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 030_tracing/.dockerignore
36+
dockerignore: 10_agentic/00_base/030_tracing/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/00_base/040_other_sdks/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 040_other_sdks
26-
- ../../test_utils
25+
- 10_agentic/00_base/040_other_sdks
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 040_other_sdks/Dockerfile
31+
dockerfile: 10_agentic/00_base/040_other_sdks/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 040_other_sdks/.dockerignore
36+
dockerignore: 10_agentic/00_base/040_other_sdks/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/00_base/080_batch_events/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 080_batch_events
26-
- ../../test_utils
25+
- 10_agentic/00_base/080_batch_events
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 080_batch_events/Dockerfile
31+
dockerfile: 10_agentic/00_base/080_batch_events/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 080_batch_events/.dockerignore
36+
dockerignore: 10_agentic/00_base/080_batch_events/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/10_temporal/000_hello_acp/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 000_hello_acp
26-
- ../../test_utils
25+
- 10_agentic/10_temporal/000_hello_acp
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 000_hello_acp/Dockerfile
31+
dockerfile: 10_agentic/10_temporal/000_hello_acp/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 000_hello_acp/.dockerignore
36+
dockerignore: 10_agentic/10_temporal/000_hello_acp/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/10_temporal/010_agent_chat/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 010_agent_chat
26-
- ../../test_utils
25+
- 10_agentic/10_temporal/010_agent_chat
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 010_agent_chat/Dockerfile
31+
dockerfile: 10_agentic/10_temporal/010_agent_chat/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 010_agent_chat/.dockerignore
36+
dockerignore: 10_agentic/10_temporal/010_agent_chat/.dockerignore
3737

3838

3939
# Local Development Configuration

examples/tutorials/10_agentic/10_temporal/020_state_machine/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
build:
1616
context:
1717
# Root directory for the build context
18-
root: ../ # Keep this as the default root
18+
root: ../../../ # Up to tutorials level to include test_utils
1919

2020
# Paths to include in the Docker build context
2121
# Must include:
2222
# - Your agent's directory (your custom agent code)
2323
# These paths are collected and sent to the Docker daemon for building
2424
include_paths:
25-
- 020_state_machine
26-
- ../../test_utils
25+
- 10_agentic/10_temporal/020_state_machine
26+
- test_utils
2727

2828
# Path to your agent's Dockerfile
2929
# This defines how your agent's image is built from the context
3030
# Relative to the root directory
31-
dockerfile: 020_state_machine/Dockerfile
31+
dockerfile: 10_agentic/10_temporal/020_state_machine/Dockerfile
3232

3333
# Path to your agent's .dockerignore
3434
# Filters unnecessary files from the build context
3535
# Helps keep build context small and builds fast
36-
dockerignore: 020_state_machine/.dockerignore
36+
dockerignore: 10_agentic/10_temporal/020_state_machine/.dockerignore
3737

3838

3939
# Local Development Configuration

0 commit comments

Comments
 (0)