Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
6006f9b
Export API with model factory changes (#211)
joseharriaga Aug 14, 2024
5ed5492
Remove constructors that do not explicitly take a credential paramete…
joseharriaga Aug 19, 2024
20dadae
Rename `User` property in applicable Options classes to `EndUserId` (…
joseharriaga Aug 19, 2024
254de90
Sync to openai-dotnet@3ce26bd729fe9e49f444c115f032c9fa254dad5b (#216)
joseharriaga Aug 20, 2024
292266a
Let's go faster: full (8/16) spec update, minimal/targeted public API…
trrwilson Aug 23, 2024
04db4a1
tiny test warning fix (#217)
trrwilson Aug 23, 2024
ee5305e
Code reflection update: OpenAI 2.0.0-beta.9 + Azure.AI.OpenAI 2.0.0-b…
trrwilson Aug 24, 2024
2571c77
Rename `GenerateSpeechFromText` to `GenerateSpeech` (#204)
joseharriaga Aug 25, 2024
c7a0d03
Use `AssertNotFrozen()` in the setters of `OpenAIClientOptions` prope…
joseharriaga Aug 25, 2024
add97d7
Remove the version path parameter "v1" from the default endpoint URL …
joseharriaga Aug 25, 2024
adddd28
Change the type of SizeInBytes in OpenAIFileInfo from long? to int? (…
joseharriaga Aug 25, 2024
6ec17ca
Top-level client options bug fix and test (#221)
trrwilson Aug 26, 2024
edce89f
Move service methods for paginated endpoints to use SCM based paginat…
ShivangiReja Aug 26, 2024
0ffd639
Hygiene: reflect minor updates from openai-dotnet for 2.0.0-beta.10 (…
trrwilson Aug 26, 2024
07c9c05
Update pagination method URIs for fine-tuning and batching (#223)
ShivangiReja Aug 26, 2024
83c2e97
Revert removeal of the version path parameter from the default endpoi…
joseharriaga Aug 28, 2024
bdfb3ff
Make `GeneratedSpeechVoice` an extensible enum (#220)
joseharriaga Aug 28, 2024
c956e1f
Apply dotnet format (#230)
mikhail Aug 28, 2024
a6384fc
[ModelFactory] Implemented Chat factory (#215)
kinelski Aug 28, 2024
b97d398
Add Experimental attribute to all public APIs in the OpenAI.Assistant…
ShivangiReja Aug 29, 2024
30bd79c
Add Experimental attribute to all public APIs in the OpenAI.VectorSto…
ShivangiReja Aug 29, 2024
b59b9cb
Add Experimental attribute to public APIs in Batch and Fine-Tuning na…
ShivangiReja Aug 30, 2024
328c8b5
Rename Speed to SpeedRatio and make GeneratedSpeechFormat an extensib…
joseharriaga Aug 31, 2024
de7302b
Use Record<unknown> for non-metadata "object" extension maps (like fi…
trrwilson Sep 1, 2024
1b0a523
Fix TTS test (#237)
joseharriaga Sep 1, 2024
be046d5
Mitigate ChatResponseFormat serialization issue for unity/mono/etc. (…
joseharriaga Sep 3, 2024
cb2236d
Sync to openai-dotnet@dce79fc17963d0550f790db7158cbb0df7c186ec (#241)
joseharriaga Sep 4, 2024
3746723
port pagination fixes from Azure into base library (#242)
trrwilson Sep 4, 2024
ba95e3c
Sync Azure OpenAI code between this and Azure repo (#228)
ralph-msft Sep 4, 2024
49e3f42
Rename `ChatMessageContentPart`'s factory methods (#225)
joseharriaga Sep 4, 2024
96e5742
Make all instances of WriteCore internal (#244)
joseharriaga Sep 5, 2024
e20f3e9
Clean up union patterns in the `OpenAI.Chat` namespace (#245)
joseharriaga Sep 6, 2024
dbc2d27
Add support for automatic re-recording on test failures. (#249)
ralph-msft Sep 9, 2024
4585f94
Remove `ListOrder` from the `OpenAI` namespace in favor of individual…
joseharriaga Sep 9, 2024
a0ae77a
Merge branch 'oai-polling-lro' into chschrae/LROMergeFromMain
chschrae Sep 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
706 changes: 0 additions & 706 deletions .dotnet.azure/.tests.staging/AoaiTestBase.cs

This file was deleted.

674 changes: 0 additions & 674 deletions .dotnet.azure/.tests.staging/AssistantTests.cs

This file was deleted.

21 changes: 0 additions & 21 deletions .dotnet.azure/.tests.staging/Azure.AI.OpenAI.Tests.csproj

This file was deleted.

525 changes: 525 additions & 0 deletions .dotnet.azure/CHANGELOG.md

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions .dotnet.azure/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<RepoEngPath>$(MSBuildThisFileDirectory)eng</RepoEngPath>
<RepoSrcPath>$(RepoRoot)src</RepoSrcPath>
<RepoSdkPath>$(RepoRoot)src/SDKs</RepoSdkPath>
<IsLegacyMgmtProject Condition="'$(IsLegacyMgmtProject)' == '' and $(MSBuildProjectName.Contains('.Management.'))">true</IsLegacyMgmtProject>
<ProjectStartsWithStandardName Condition="$(MSBuildProjectName.StartsWith('Azure.')) or $(MSBuildProjectName.StartsWith('Microsoft.'))">true</ProjectStartsWithStandardName>
<ImportRepoCommonSettings Condition="'$(ImportRepoCommonSettings)' == '' and '$(ProjectStartsWithStandardName)' == 'true' and '$(IsLegacyMgmtProject)' != 'true'">true</ImportRepoCommonSettings>
</PropertyGroup>

<!-- Setup default project properties -->
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<PlatformName Condition="'$(PlatformName)' == ''">$(Platform)</PlatformName>
</PropertyGroup>

<!-- Setup common output paths -->
<PropertyGroup>
<ArtifactsDir Condition="'$(ArtifactsDir)' == ''">$(RepoRoot)artifacts\</ArtifactsDir>
<ArtifactsObjDir>$(ArtifactsDir)obj\</ArtifactsObjDir>
<ArtifactsBinDir>$(ArtifactsDir)bin\</ArtifactsBinDir>
<ArtifactsPackagesDir>$(ArtifactsDir)packages\$(Configuration)\</ArtifactsPackagesDir>

<OutDirName Condition="'$(OutDirName)' == ''">$(MSBuildProjectName)</OutDirName>

<BaseOutputPath Condition="'$(BaseOutputPath)' == ''">$([System.IO.Path]::GetFullPath('$(ArtifactsBinDir)$(OutDirName)\'))</BaseOutputPath>
<OutputPath Condition="'$(PlatformName)' == 'AnyCPU'">$(BaseOutputPath)$(Configuration)\</OutputPath>
<OutputPath Condition="'$(PlatformName)' != 'AnyCPU'">$(BaseOutputPath)$(PlatformName)\$(Configuration)\</OutputPath>

<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">$([System.IO.Path]::GetFullPath('$(ArtifactsObjDir)$(OutDirName)\'))</BaseIntermediateOutputPath>
<IntermediateOutputPath Condition="'$(PlatformName)' == 'AnyCPU'">$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
<IntermediateOutputPath Condition="'$(PlatformName)' != 'AnyCPU'">$(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\</IntermediateOutputPath>

<PackageOutputPath>$(ArtifactsPackagesDir)/$(MSBuildProjectName)</PackageOutputPath>

<!-- Used to help catch projects that use this property but don't end up importing our props below -->
<RequiredTargetFrameworks>import-required-properties</RequiredTargetFrameworks>
</PropertyGroup>

<Import Project="$(RepoEngPath)\Directory.Build.Common.props" Condition="'$(ImportRepoCommonSettings)' == 'true'" />
</Project>
10 changes: 10 additions & 0 deletions .dotnet.azure/Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Condition="'$(IsTestProject)' == 'true' or '$(IsPerfProject)' == 'true' or '$(IsStressProject)' == 'true'">
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>SourcePath</_Parameter1>
<_Parameter2>$(MSBuildProjectDirectory)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>

<Import Project="$(RepoEngPath)\Directory.Build.Common.targets" Condition="'$(ImportRepoCommonSettings)' == 'true'" />
</Project>
Loading