Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
47a79e3
Copy code from https://github.com/Azure/azure-sdk-for-python-pr/tree/…
dargilco Oct 30, 2025
8a0fbe3
Update emitter-package.json
dargilco Oct 30, 2025
72d6a64
exclude all other packages from ci.yml
dargilco Oct 30, 2025
9a58fbc
Update cspell.json
dargilco Oct 30, 2025
ec726c6
Update broken link in README.md
dargilco Oct 30, 2025
3b48a65
Fix one Agent sample. Fix broken link in CHANGELOG.md
dargilco Oct 30, 2025
1630e5b
Address Copilot review comments
dargilco Oct 30, 2025
ed53bf7
Fix spelling in test code
dargilco Oct 30, 2025
b6ce9ad
Update pip install command in samples to `azure-ai-projects>=2.0.0b1`
dargilco Oct 30, 2025
3889417
Update post-emitter-fixes.cmd
dargilco Oct 30, 2025
75e0506
Re-emit from latst TypeSpec
dargilco Oct 30, 2025
bc523bf
Update post-emitter-fixes.cmd
dargilco Oct 30, 2025
ab70711
Remove old get_openai_client method
dargilco Oct 30, 2025
d8cdba4
Move Responses samples to a new folder. Update package README.md
dargilco Oct 31, 2025
d06b5b6
update ci.yml
dargilco Oct 31, 2025
6b4dd29
Merge remote-tracking branch 'origin/main' into feature/azure-ai-proj…
dargilco Oct 31, 2025
0a1a7d4
Shorter method names for Memory Store and Agent Manifest operations (…
dargilco Oct 31, 2025
234a749
Re-emit from TypeSpec (#43731)
dargilco Oct 31, 2025
d1255bf
Merge remote-tracking branch 'origin/main' into feature/azure-ai-proj…
dargilco Nov 3, 2025
634eeeb
Re-emit from latest TypeSpec. Includes some TypeSpec doc string updat…
dargilco Nov 3, 2025
5eaee2f
adding responses instrumentation (#43762)
M-Hietala Nov 3, 2025
f501b3e
Disable doc generation (sphinx) for now, until the tool is fixed
dargilco Nov 3, 2025
3c2acbe
Merge branch 'feature/azure-ai-projects/2.0.0b1' of https://github.co…
dargilco Nov 3, 2025
5eda9e5
adding more tracing (#43768)
M-Hietala Nov 3, 2025
76cf69c
Re-emit from TypeSpec
dargilco Nov 4, 2025
594d5d5
Merge branch 'feature/azure-ai-projects/2.0.0b1' of https://github.co…
dargilco Nov 4, 2025
88d409d
Merge remote-tracking branch 'origin/main' into feature/azure-ai-proj…
dargilco Nov 4, 2025
f812d87
workflow samples (#43785)
howieleung Nov 4, 2025
aa4b941
Improvements to console logging (#43780)
dargilco Nov 4, 2025
1b145aa
Re-emit from TypeSpec, to rename WorkflowDefinition to WorkflowAgentD…
dargilco Nov 4, 2025
362fba0
Merge branch 'feature/azure-ai-projects/2.0.0b1' of https://github.co…
dargilco Nov 4, 2025
8393660
Updated workflow samples to use new name WorkflowAgentDefinition
dargilco Nov 4, 2025
dbbac66
Merge remote-tracking branch 'origin/main' into feature/azure-ai-proj…
dargilco Nov 4, 2025
309b4a7
Sample updates (#43767)
howieleung Nov 5, 2025
4653d95
Fix pylint errors
dargilco Nov 5, 2025
fceab57
Migrate samples from agentsv2-preview repo (#43798)
howieleung Nov 5, 2025
19ba455
Format and rename samples (#43819)
howieleung Nov 5, 2025
cc9b09a
adding tool call instrumentation (#43799)
M-Hietala Nov 5, 2025
be3f29f
Add samples for "responses" without using AIProjectClient (#43820)
dargilco Nov 6, 2025
38038e0
define recording decorators that can record openai traffic within tes…
scbedd Nov 6, 2025
17c996f
additional conversation items support (#43836)
M-Hietala Nov 6, 2025
4712be1
Fix emitted enum value A2_A_PREVIEW to A2A_PREVIEW (#43853)
dargilco Nov 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
234 changes: 202 additions & 32 deletions eng/emitter-package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion eng/emitter-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@azure-tools/typespec-autorest": "~0.61.0",
"@azure-tools/typespec-azure-rulesets": "~0.61.0",
"@azure-tools/typespec-client-generator-core": "~0.61.0",
"@azure-tools/typespec-liftr-base": "0.10.0"
"@azure-tools/typespec-liftr-base": "0.10.0",
"azure-ai-decorators": "https://github.com/glecaros/pkg/raw/refs/heads/main/azure-ai-decorators-v0.1.2.tgz"
}
}
21 changes: 20 additions & 1 deletion sdk/ai/azure-ai-projects/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,31 @@
# 3. Run the tests (`pytest`) or run samples in the `samples` folder
#

#######################################################################
#
# Used in samples
#
# Project endpoint has the format:
# `https://<your-ai-services-account-name>.services.ai.azure.com/api/projects/<your-project-name>`
AZURE_AI_PROJECT_ENDPOINT=
AZURE_AI_MODEL_DEPLOYMENT_NAME=
CONNECTION_NAME=

# Used in tests
#######################################################################
#
# Used tests, excluding Agent tests
AZURE_AI_PROJECTS_TESTS_PROJECT_ENDPOINT=

# Used in Agent tests
AZURE_AI_PROJECTS_TESTS_AGENTS_PROJECT_ENDPOINT=

# Used in tracing tests
AZURE_AI_PROJECTS_TESTS_TRACING_PROJECT_ENDPOINT=

# Used in Container App Agents tests
AZURE_AI_PROJECTS_TESTS_CONTAINER_PROJECT_ENDPOINT=
AZURE_AI_PROJECTS_TESTS_CONTAINER_APP_RESOURCE_ID=
AZURE_AI_PROJECTS_TESTS_CONTAINER_INGRESS_SUBDOMAIN_SUFFIX=



Loading
Loading