Skip to content

Commit aedeac2

Browse files
nick863dargilco
andauthored
Use 1DP endpoint (#40474)
* Use 1DP endpoint * Add more config * Fix linters * Fix linters * Fix spelling * Add package to the build, so we can use private feed * Fix samples and readme * Fix readme-s and spelling * Make back compatible * Fixes * Fix linters and record the tests --------- Co-authored-by: Darren Cohen <[email protected]>
1 parent 7ad0242 commit aedeac2

File tree

103 files changed

+2665
-2669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+2665
-2669
lines changed

.vscode/cspell.json

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
"sdk/ai/azure-ai-projects/samples/agents/tripadvisor_openapi.json",
4040
"/sdk/ai/azure-ai-projects/samples/evaluations/async_samples/data/**",
4141
"/sdk/ai/azure-ai-projects/samples/evaluations/data/**",
42+
"sdk/ai/azure-ai-assistants/samples/nifty_500_quarterly_results.csv",
43+
"sdk/ai/azure-ai-assistants/samples/tripadvisor_openapi.json",
4244
"sdk/ai/azure-ai-resources/azure/ai/resources/_index/_langchain/vendor/**",
4345
"sdk/ai/azure-ai-resources/azure/ai/resources/_restclient/**",
4446
"sdk/cognitiveservices/azure-cognitiveservices-search-autosuggest/**",
@@ -1360,6 +1362,14 @@
13601362
"azureopenai"
13611363
]
13621364
},
1365+
{
1366+
"filename": "sdk/ai/azure-ai-assistants/**",
1367+
"words": [
1368+
"GENAI",
1369+
"fspath",
1370+
"wttr"
1371+
]
1372+
},
13631373
{
13641374
"filename": "sdk/ai/azure-ai-inference/**",
13651375
"words": [

eng/.docsettings.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ omitted_paths:
1616
- sdk/vision/azure-ai-vision-imageanalysis/tests/*
1717
- sdk/ai/azure-ai-inference/tests/*
1818
- sdk/ai/azure-ai-projects/tests/*
19+
- sdk/ai/azure-ai-assistants/tests/*
1920
- sdk/storage/azure-storage-extensions/*
2021

2122
language: python

pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ignore-paths=
88
azure\\mixedreality\\remoterendering\\_api_version.py,
99
azure/mixedreality/remoterendering/_api_version.py,
1010
(?:.*[/\\]|^)projects/(models/_models.py|_model_base.py|operations/_operations.py|aio/operations/_operations.py)$,
11+
(?:.*[/\\]|^)assistants/(_models.py|_model_base.py|_operations/_operations.py|aio/_operations/_operations.py)$,
1112
# Exclude any path that contains the following directory names
1213
(?:.*[/\\]|^)(?:_vendor|_generated|_restclient|samples|examples|test|tests|doc|\.tox)(?:[/\\]|$)
1314

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Release History
22

3-
## 1.0.0b1 (1970-01-01)
3+
## 1.0.0b1 (Unreleased)
4+
5+
### Features Added
46

57
- Initial version

0 commit comments

Comments
 (0)