diff --git a/python/samples/04-hosting/durabletask/01_single_agent/.env.example b/python/samples/04-hosting/durabletask/01_single_agent/.env.example new file mode 100644 index 0000000000..30f5c34228 --- /dev/null +++ b/python/samples/04-hosting/durabletask/01_single_agent/.env.example @@ -0,0 +1,5 @@ +# Azure AI Foundry project endpoint URL, e.g. https://your-project.services.ai.azure.com/api/projects/your-project +FOUNDRY_PROJECT_ENDPOINT= + +# Model deployment name in your Foundry project +FOUNDRY_MODEL= diff --git a/python/samples/04-hosting/durabletask/02_multi_agent/.env.example b/python/samples/04-hosting/durabletask/02_multi_agent/.env.example new file mode 100644 index 0000000000..fbb0778107 --- /dev/null +++ b/python/samples/04-hosting/durabletask/02_multi_agent/.env.example @@ -0,0 +1,5 @@ +# Azure OpenAI resource endpoint URL, e.g. https://your-resource.openai.azure.com/ +AZURE_OPENAI_ENDPOINT= + +# Azure OpenAI model deployment name +AZURE_OPENAI_MODEL= diff --git a/python/samples/04-hosting/durabletask/03_single_agent_streaming/.env.example b/python/samples/04-hosting/durabletask/03_single_agent_streaming/.env.example new file mode 100644 index 0000000000..c2b6a3af7e --- /dev/null +++ b/python/samples/04-hosting/durabletask/03_single_agent_streaming/.env.example @@ -0,0 +1,10 @@ +# Azure AI Foundry project endpoint URL, e.g. https://your-project.services.ai.azure.com/api/projects/your-project +FOUNDRY_PROJECT_ENDPOINT= + +# Model deployment name in your Foundry project +FOUNDRY_MODEL= + +# Redis connection string (defaults to redis://localhost:6379 if unset) +REDIS_CONNECTION_STRING= + +REDIS_STREAM_TTL_MINUTES=10 # Stream key TTL in minutes; use a positive integer (default: 10). Non-positive values remove keys immediately (Redis EXPIRE). diff --git a/python/samples/04-hosting/durabletask/04_single_agent_orchestration_chaining/.env.example b/python/samples/04-hosting/durabletask/04_single_agent_orchestration_chaining/.env.example new file mode 100644 index 0000000000..30f5c34228 --- /dev/null +++ b/python/samples/04-hosting/durabletask/04_single_agent_orchestration_chaining/.env.example @@ -0,0 +1,5 @@ +# Azure AI Foundry project endpoint URL, e.g. https://your-project.services.ai.azure.com/api/projects/your-project +FOUNDRY_PROJECT_ENDPOINT= + +# Model deployment name in your Foundry project +FOUNDRY_MODEL= diff --git a/python/samples/04-hosting/durabletask/05_multi_agent_orchestration_concurrency/.env.example b/python/samples/04-hosting/durabletask/05_multi_agent_orchestration_concurrency/.env.example new file mode 100644 index 0000000000..30f5c34228 --- /dev/null +++ b/python/samples/04-hosting/durabletask/05_multi_agent_orchestration_concurrency/.env.example @@ -0,0 +1,5 @@ +# Azure AI Foundry project endpoint URL, e.g. https://your-project.services.ai.azure.com/api/projects/your-project +FOUNDRY_PROJECT_ENDPOINT= + +# Model deployment name in your Foundry project +FOUNDRY_MODEL= diff --git a/python/samples/04-hosting/durabletask/06_multi_agent_orchestration_conditionals/.env.example b/python/samples/04-hosting/durabletask/06_multi_agent_orchestration_conditionals/.env.example new file mode 100644 index 0000000000..fbb0778107 --- /dev/null +++ b/python/samples/04-hosting/durabletask/06_multi_agent_orchestration_conditionals/.env.example @@ -0,0 +1,5 @@ +# Azure OpenAI resource endpoint URL, e.g. https://your-resource.openai.azure.com/ +AZURE_OPENAI_ENDPOINT= + +# Azure OpenAI model deployment name +AZURE_OPENAI_MODEL= diff --git a/python/samples/04-hosting/durabletask/07_single_agent_orchestration_hitl/.env.example b/python/samples/04-hosting/durabletask/07_single_agent_orchestration_hitl/.env.example new file mode 100644 index 0000000000..30f5c34228 --- /dev/null +++ b/python/samples/04-hosting/durabletask/07_single_agent_orchestration_hitl/.env.example @@ -0,0 +1,5 @@ +# Azure AI Foundry project endpoint URL, e.g. https://your-project.services.ai.azure.com/api/projects/your-project +FOUNDRY_PROJECT_ENDPOINT= + +# Model deployment name in your Foundry project +FOUNDRY_MODEL=