File tree Expand file tree Collapse file tree 13 files changed +52
-52
lines changed
examples/tutorials/10_agentic
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 Expand file tree Collapse file tree 13 files changed +52
-52
lines changed 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 010_multiturn/pyproject.toml /app/010_multiturn/pyproject.toml
27- COPY 010_multiturn/README.md /app/010_multiturn/README.md
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
2828
2929WORKDIR /app/010_multiturn
3030
31- COPY 010_multiturn/project /app/010_multiturn/project
31+ COPY 10_agentic/00_base/ 010_multiturn/project /app/010_multiturn/project
3232
3333# Copy the test files
34- COPY 010_multiturn/tests /app/010_multiturn/tests
34+ COPY 10_agentic/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 @@ -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 020_streaming/pyproject.toml /app/020_streaming/pyproject.toml
27- COPY 020_streaming/README.md /app/020_streaming/README.md
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
2828
2929WORKDIR /app/020_streaming
3030
3131# Copy the project code
32- COPY 020_streaming/project /app/020_streaming/project
32+ COPY 10_agentic/00_base/ 020_streaming/project /app/020_streaming/project
3333
3434# Copy the test files
35- COPY 020_streaming/tests /app/020_streaming/tests
35+ COPY 10_agentic/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 @@ -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 030_tracing/pyproject.toml /app/030_tracing/pyproject.toml
27- COPY 030_tracing/README.md /app/030_tracing/README.md
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
2828
2929WORKDIR /app/030_tracing
3030
3131# Copy the project code
32- COPY 030_tracing/project /app/030_tracing/project
32+ COPY 10_agentic/00_base/ 030_tracing/project /app/030_tracing/project
3333
3434# Copy the test files
35- COPY 030_tracing/tests /app/030_tracing/tests
35+ COPY 10_agentic/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 @@ -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 040_other_sdks/pyproject.toml /app/040_other_sdks/pyproject.toml
27- COPY 040_other_sdks/README.md /app/040_other_sdks/README.md
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
2828
2929WORKDIR /app/040_other_sdks
3030
3131# Copy the project code
32- COPY 040_other_sdks/project /app/040_other_sdks/project
32+ COPY 10_agentic/00_base/ 040_other_sdks/project /app/040_other_sdks/project
3333
3434# Copy the test files
35- COPY 040_other_sdks/tests /app/040_other_sdks/tests
35+ COPY 10_agentic/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 @@ -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 080_batch_events/pyproject.toml /app/080_batch_events/pyproject.toml
27- COPY 080_batch_events/README.md /app/080_batch_events/README.md
26+ COPY 10_agentic/00_base/ 080_batch_events/pyproject.toml /app/080_batch_events/pyproject.toml
27+ COPY 10_agentic/00_base/ 080_batch_events/README.md /app/080_batch_events/README.md
2828
2929WORKDIR /app/080_batch_events
3030
3131# Copy the project code
32- COPY 080_batch_events/project /app/080_batch_events/project
32+ COPY 10_agentic/00_base/ 080_batch_events/project /app/080_batch_events/project
3333
3434# Copy the test files
35- COPY 080_batch_events/tests /app/080_batch_events/tests
35+ COPY 10_agentic/00_base/ 080_batch_events/tests /app/080_batch_events/tests
3636
3737# Copy shared test utilities
3838COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2929ENV UV_HTTP_TIMEOUT=1000
3030
3131# Copy pyproject.toml and README.md to install dependencies
32- COPY 000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
33- COPY 000_hello_acp/README.md /app/000_hello_acp/README.md
32+ COPY 10_agentic/10_temporal/ 000_hello_acp/pyproject.toml /app/000_hello_acp/pyproject.toml
33+ COPY 10_agentic/10_temporal/ 000_hello_acp/README.md /app/000_hello_acp/README.md
3434
3535WORKDIR /app/000_hello_acp
3636
3737# Copy the project code
38- COPY 000_hello_acp/project /app/000_hello_acp/project
38+ COPY 10_agentic/10_temporal/ 000_hello_acp/project /app/000_hello_acp/project
3939
4040# Copy the test files
41- COPY 000_hello_acp/tests /app/000_hello_acp/tests
41+ COPY 10_agentic/10_temporal/ 000_hello_acp/tests /app/000_hello_acp/tests
4242
4343# Copy shared test utilities
4444COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2929ENV UV_HTTP_TIMEOUT=1000
3030
3131# Copy pyproject.toml and README.md to install dependencies
32- COPY 010_agent_chat/pyproject.toml /app/010_agent_chat/pyproject.toml
33- COPY 010_agent_chat/README.md /app/010_agent_chat/README.md
32+ COPY 10_agentic/10_temporal/ 010_agent_chat/pyproject.toml /app/010_agent_chat/pyproject.toml
33+ COPY 10_agentic/10_temporal/ 010_agent_chat/README.md /app/010_agent_chat/README.md
3434
3535WORKDIR /app/010_agent_chat
3636
3737# Copy the project code
38- COPY 010_agent_chat/project /app/010_agent_chat/project
38+ COPY 10_agentic/10_temporal/ 010_agent_chat/project /app/010_agent_chat/project
3939
4040# Copy the test files
41- COPY 010_agent_chat/tests /app/010_agent_chat/tests
41+ COPY 10_agentic/10_temporal/ 010_agent_chat/tests /app/010_agent_chat/tests
4242
4343# Copy shared test utilities
4444COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2929ENV UV_HTTP_TIMEOUT=1000
3030
3131# Copy pyproject.toml and README.md to install dependencies
32- COPY 020_state_machine/pyproject.toml /app/020_state_machine/pyproject.toml
33- COPY 020_state_machine/README.md /app/020_state_machine/README.md
32+ COPY 10_agentic/10_temporal/ 020_state_machine/pyproject.toml /app/020_state_machine/pyproject.toml
33+ COPY 10_agentic/10_temporal/ 020_state_machine/README.md /app/020_state_machine/README.md
3434
3535WORKDIR /app/020_state_machine
3636
3737# Copy the project code
38- COPY 020_state_machine/project /app/020_state_machine/project
38+ COPY 10_agentic/10_temporal/ 020_state_machine/project /app/020_state_machine/project
3939
4040# Copy the test files
41- COPY 020_state_machine/tests /app/020_state_machine/tests
41+ COPY 10_agentic/10_temporal/ 020_state_machine/tests /app/020_state_machine/tests
4242
4343# Copy shared test utilities
4444COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2929ENV UV_HTTP_TIMEOUT=1000
3030
3131# Copy pyproject.toml and README.md to install dependencies
32- COPY 030_custom_activities/pyproject.toml /app/030_custom_activities/pyproject.toml
33- COPY 030_custom_activities/README.md /app/030_custom_activities/README.md
32+ COPY 10_agentic/10_temporal/ 030_custom_activities/pyproject.toml /app/030_custom_activities/pyproject.toml
33+ COPY 10_agentic/10_temporal/ 030_custom_activities/README.md /app/030_custom_activities/README.md
3434
3535WORKDIR /app/030_custom_activities
3636
3737# Copy the project code
38- COPY 030_custom_activities/project /app/030_custom_activities/project
38+ COPY 10_agentic/10_temporal/ 030_custom_activities/project /app/030_custom_activities/project
3939
4040# Copy the test files
41- COPY 030_custom_activities/tests /app/030_custom_activities/tests
41+ COPY 10_agentic/10_temporal/ 030_custom_activities/tests /app/030_custom_activities/tests
4242
4343# Copy shared test utilities
4444COPY test_utils /app/test_utils
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ RUN uv pip install --system --upgrade pip setuptools wheel
2929ENV UV_HTTP_TIMEOUT=1000
3030
3131# Copy pyproject.toml and README.md to install dependencies
32- COPY 050_agent_chat_guardrails/pyproject.toml /app/050_agent_chat_guardrails/pyproject.toml
33- COPY 050_agent_chat_guardrails/README.md /app/050_agent_chat_guardrails/README.md
32+ COPY 10_agentic/10_temporal/ 050_agent_chat_guardrails/pyproject.toml /app/050_agent_chat_guardrails/pyproject.toml
33+ COPY 10_agentic/10_temporal/ 050_agent_chat_guardrails/README.md /app/050_agent_chat_guardrails/README.md
3434
3535WORKDIR /app/050_agent_chat_guardrails
3636
3737# Copy the project code
38- COPY 050_agent_chat_guardrails/project /app/050_agent_chat_guardrails/project
38+ COPY 10_agentic/10_temporal/ 050_agent_chat_guardrails/project /app/050_agent_chat_guardrails/project
3939
4040# Copy the test files
41- COPY 050_agent_chat_guardrails/tests /app/050_agent_chat_guardrails/tests
41+ COPY 10_agentic/10_temporal/ 050_agent_chat_guardrails/tests /app/050_agent_chat_guardrails/tests
4242
4343# Copy shared test utilities
4444COPY test_utils /app/test_utils
You can’t perform that action at this time.
0 commit comments