Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="LightResults" Version="10.0.0"/>
<PackageReference Include="LightResults" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<!-- References -->

<ItemGroup>
<PackageReference Include="LightResults" Version="10.0.0"/>
<PackageReference Include="LightResults" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<!-- References -->
<ItemGroup>
<PackageReference Include="LightResults" Version="10.0.0"/>
<PackageReference Include="LightResults" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

<!-- References -->
<ItemGroup>
<PackageReference Include="LightResults" Version="10.0.0"/>
<PackageReference Include="LightResults" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
<PackageReference Include="OpenAI" Version="2.7.0" />
<PackageReference Include="OpenAI" Version="2.8.0" />
</ItemGroup>

<ItemGroup>
Expand All @@ -29,9 +29,9 @@
<!-- Output -->
<PropertyGroup>
<AssemblyName>LightResults.Extensions.OpenAI</AssemblyName>
<Version>10.0.0</Version>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<FileVersion>10.0.0.0</FileVersion>
<Version>10.0.1</Version>
<AssemblyVersion>10.0.1.0</AssemblyVersion>
<FileVersion>10.0.1.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<Optimize>true</Optimize>
<IsAotCompatible>true</IsAotCompatible>
Expand Down
2 changes: 1 addition & 1 deletion src/LightResults.Extensions.OpenAI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This package provides a `Try` extension method version of all public methods for
- **File Operations** - `OpenAIFileClient` extensions for file uploads and management
- **Fine-tuning** - `FineTuningClient` extensions for model fine-tuning
- **Image Generation** - `ImageClient` extensions for image generation and editing
- **Responses** - `OpenAIResponseClient` extensions for responses and streaming
- **Responses** - `ResponsesClient` extensions for responses and streaming
- **Vector Stores** - `VectorStoreClient` extensions for vector storage and retrieval

### Usage Examples
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<!-- References -->
<ItemGroup>
<PackageReference Include="LightResults" Version="10.0.0"/>
<PackageReference Include="LightResults" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions tools/Benchmarks/Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions tools/ComparisonBenchmarks/ComparisonBenchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<PackageReference Include="FluentResults" Version="4.0.0"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Rascal" Version="1.1.0"/>
</ItemGroup>

Expand Down
Loading