File tree Expand file tree Collapse file tree 31 files changed +132
-111
lines changed
examples/tutorials/10_async
090_multi_agent_non_temporal
050_agent_chat_guardrails
060_open_ai_agents_sdk_hello_world
070_open_ai_agents_sdk_tools
080_open_ai_agents_sdk_human_in_the_loop
090_claude_agents_sdk_mvp Expand file tree Collapse file tree 31 files changed +132
-111
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323ENV UV_HTTP_TIMEOUT=1000
2424
2525# Copy pyproject.toml and README.md to install dependencies
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
26+ COPY 10_async /00_base/000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
27+ COPY 10_async /00_base/000_hello_acp/README.md /app/000_hello_acp/README.md
2828
2929WORKDIR /app/000_hello_acp
3030
3131# Copy the project code
32- COPY 10_agentic /00_base/000_hello_acp/project /app/000_hello_acp/project
32+ COPY 10_async /00_base/000_hello_acp/project /app/000_hello_acp/project
3333
3434# Copy the test files
35- COPY 10_agentic /00_base/000_hello_acp/tests /app/000_hello_acp/tests
35+ COPY 10_async /00_base/000_hello_acp/tests /app/000_hello_acp/tests
3636
3737# Copy shared test utilities
3838COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ build:
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- - 10_agentic /00_base/000_hello_acp
25+ - 10_async /00_base/000_hello_acp
2626 - 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 : 10_agentic /00_base/000_hello_acp/Dockerfile
31+ dockerfile : 10_async /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 : 10_agentic /00_base/000_hello_acp/.dockerignore
36+ dockerignore : 10_async /00_base/000_hello_acp/.dockerignore
3737
3838
3939# Local Development Configuration
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323ENV UV_HTTP_TIMEOUT=1000
2424
2525# Copy pyproject.toml and README.md to install dependencies
26- COPY 10_agentic /00_base/010_multiturn/pyproject.toml /app/010_multiturn/pyproject.toml
27- COPY 10_agentic /00_base/010_multiturn/README.md /app/010_multiturn/README.md
26+ COPY 10_async /00_base/010_multiturn/pyproject.toml /app/010_multiturn/pyproject.toml
27+ COPY 10_async /00_base/010_multiturn/README.md /app/010_multiturn/README.md
2828
2929WORKDIR /app/010_multiturn
3030
31- COPY 10_agentic /00_base/010_multiturn/project /app/010_multiturn/project
31+ COPY 10_async /00_base/010_multiturn/project /app/010_multiturn/project
3232
3333# Copy the test files
34- COPY 10_agentic /00_base/010_multiturn/tests /app/010_multiturn/tests
34+ COPY 10_async /00_base/010_multiturn/tests /app/010_multiturn/tests
3535
3636# Copy shared test utilities
3737COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ build:
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- - 10_agentic /00_base/010_multiturn
25+ - 10_async /00_base/010_multiturn
2626 - 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 : 10_agentic /00_base/010_multiturn/Dockerfile
31+ dockerfile : 10_async /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 : 10_agentic /00_base/010_multiturn/.dockerignore
36+ dockerignore : 10_async /00_base/010_multiturn/.dockerignore
3737
3838
3939# Local Development Configuration
Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323ENV UV_HTTP_TIMEOUT=1000
2424
2525# Copy pyproject.toml and README.md to install dependencies
26- COPY 10_agentic /00_base/020_streaming/pyproject.toml /app/020_streaming/pyproject.toml
27- COPY 10_agentic /00_base/020_streaming/README.md /app/020_streaming/README.md
26+ COPY 10_async /00_base/020_streaming/pyproject.toml /app/020_streaming/pyproject.toml
27+ COPY 10_async /00_base/020_streaming/README.md /app/020_streaming/README.md
2828
2929WORKDIR /app/020_streaming
3030
3131# Copy the project code
32- COPY 10_agentic /00_base/020_streaming/project /app/020_streaming/project
32+ COPY 10_async /00_base/020_streaming/project /app/020_streaming/project
3333
3434# Copy the test files
35- COPY 10_agentic /00_base/020_streaming/tests /app/020_streaming/tests
35+ COPY 10_async /00_base/020_streaming/tests /app/020_streaming/tests
3636
3737# Copy shared test utilities
3838COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ build:
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- - 10_agentic /00_base/020_streaming
25+ - 10_async /00_base/020_streaming
2626 - 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 : 10_agentic /00_base/020_streaming/Dockerfile
31+ dockerfile : 10_async /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 : 10_agentic /00_base/020_streaming/.dockerignore
36+ dockerignore : 10_async /00_base/020_streaming/.dockerignore
3737
3838
3939# Local Development Configuration
Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323ENV UV_HTTP_TIMEOUT=1000
2424
2525# Copy pyproject.toml and README.md to install dependencies
26- COPY 10_agentic /00_base/030_tracing/pyproject.toml /app/030_tracing/pyproject.toml
27- COPY 10_agentic /00_base/030_tracing/README.md /app/030_tracing/README.md
26+ COPY 10_async /00_base/030_tracing/pyproject.toml /app/030_tracing/pyproject.toml
27+ COPY 10_async /00_base/030_tracing/README.md /app/030_tracing/README.md
2828
2929WORKDIR /app/030_tracing
3030
3131# Copy the project code
32- COPY 10_agentic /00_base/030_tracing/project /app/030_tracing/project
32+ COPY 10_async /00_base/030_tracing/project /app/030_tracing/project
3333
3434# Copy the test files
35- COPY 10_agentic /00_base/030_tracing/tests /app/030_tracing/tests
35+ COPY 10_async /00_base/030_tracing/tests /app/030_tracing/tests
3636
3737# Copy shared test utilities
3838COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ build:
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- - 10_agentic /00_base/030_tracing
25+ - 10_async /00_base/030_tracing
2626 - 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 : 10_agentic /00_base/030_tracing/Dockerfile
31+ dockerfile : 10_async /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 : 10_agentic /00_base/030_tracing/.dockerignore
36+ dockerignore : 10_async /00_base/030_tracing/.dockerignore
3737
3838
3939# Local Development Configuration
Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2323ENV UV_HTTP_TIMEOUT=1000
2424
2525# Copy pyproject.toml and README.md to install dependencies
26- COPY 10_agentic /00_base/040_other_sdks/pyproject.toml /app/040_other_sdks/pyproject.toml
27- COPY 10_agentic /00_base/040_other_sdks/README.md /app/040_other_sdks/README.md
26+ COPY 10_async /00_base/040_other_sdks/pyproject.toml /app/040_other_sdks/pyproject.toml
27+ COPY 10_async /00_base/040_other_sdks/README.md /app/040_other_sdks/README.md
2828
2929WORKDIR /app/040_other_sdks
3030
3131# Copy the project code
32- COPY 10_agentic /00_base/040_other_sdks/project /app/040_other_sdks/project
32+ COPY 10_async /00_base/040_other_sdks/project /app/040_other_sdks/project
3333
3434# Copy the test files
35- COPY 10_agentic /00_base/040_other_sdks/tests /app/040_other_sdks/tests
35+ COPY 10_async /00_base/040_other_sdks/tests /app/040_other_sdks/tests
3636
3737# Copy shared test utilities
3838COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -22,18 +22,18 @@ build:
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- - 10_agentic /00_base/040_other_sdks
25+ - 10_async /00_base/040_other_sdks
2626 - 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 : 10_agentic /00_base/040_other_sdks/Dockerfile
31+ dockerfile : 10_async /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 : 10_agentic /00_base/040_other_sdks/.dockerignore
36+ dockerignore : 10_async /00_base/040_other_sdks/.dockerignore
3737
3838
3939# Local Development Configuration
You can’t perform that action at this time.
0 commit comments