Skip to content

Commit 840591e

Browse files
committed
fixing the other agents
1 parent 5bb75f2 commit 840591e

File tree

14 files changed

+70
-70
lines changed

14 files changed

+70
-70
lines changed

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 10_agentic level
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+
- 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: 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: 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

examples/tutorials/10_agentic/10_temporal/030_custom_activities/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_custom_activities
26-
- ../../test_utils
25+
- 10_agentic/10_temporal/030_custom_activities
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_custom_activities/Dockerfile
31+
dockerfile: 10_agentic/10_temporal/030_custom_activities/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_custom_activities/.dockerignore
36+
dockerignore: 10_agentic/10_temporal/030_custom_activities/.dockerignore
3737

3838

3939
# Local Development Configuration

0 commit comments

Comments
 (0)