From f75093047e477428be93ab0333e5fb2c133d6c14 Mon Sep 17 00:00:00 2001 From: Howie Leung Date: Mon, 18 May 2026 14:09:24 -0700 Subject: [PATCH] Add hosted agent configuration to .env.template and create .gitignore for update-env-vars --- sdk/ai/azure-ai-projects/.env.template | 9 ++++++--- .../.github/skills/update-env-vars/.gitignore | 2 ++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 sdk/ai/azure-ai-projects/.github/skills/update-env-vars/.gitignore diff --git a/sdk/ai/azure-ai-projects/.env.template b/sdk/ai/azure-ai-projects/.env.template index 0ca16cf1517e..76c795cfaf62 100644 --- a/sdk/ai/azure-ai-projects/.env.template +++ b/sdk/ai/azure-ai-projects/.env.template @@ -57,6 +57,9 @@ A2A_USER_INPUT= AZURE_TEST_RUN_LIVE=false AZURE_SKIP_LIVE_RECORDING=true +#Used by hosted agent +FOUNDRY_HOSTED_AGENT_NAME= + # Used in Fine-tuning tests COMPLETED_OAI_MODEL_SFT_FINE_TUNING_JOB_ID= COMPLETED_OAI_MODEL_RFT_FINE_TUNING_JOB_ID= @@ -88,6 +91,6 @@ RUN_EXTENDED_FINE_TUNING_LIVE_TESTS=false # - SAMPLE_TEST_ERROR_LOG: Sample crashed with an exception during execution # - SAMPLE_TEST_FAILED_LOG: Sample ran successfully but LLM validation failed (incorrect output) # - SAMPLE_TEST_PASSED_LOG: Sample ran successfully and LLM validation passed (correct output) -# SAMPLE_TEST_PASSED_LOG=_success_.log -# SAMPLE_TEST_FAILED_LOG=_failed_.log -# SAMPLE_TEST_ERROR_LOG=_errors_.log +SAMPLE_TEST_PASSED_LOG=_success_.log +SAMPLE_TEST_FAILED_LOG=_failed_.log +SAMPLE_TEST_ERROR_LOG=_errors_.log diff --git a/sdk/ai/azure-ai-projects/.github/skills/update-env-vars/.gitignore b/sdk/ai/azure-ai-projects/.github/skills/update-env-vars/.gitignore new file mode 100644 index 000000000000..c96a04f008ee --- /dev/null +++ b/sdk/ai/azure-ai-projects/.github/skills/update-env-vars/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file