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
2 changes: 1 addition & 1 deletion Apps.OpenAI/Apps.OpenAI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<Product>OpenAI</Product>
<Description>Creating safe artificial general intelligence that benefits all of humanity</Description>
<Version>2.8.12</Version>
<Version>2.8.13</Version>
<AssemblyName>Apps.OpenAI</AssemblyName>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public IEnumerable<DataSourceItem> GetData()
{
return new List<DataSourceItem>
{
new("gpt-5.2", "gpt-5.2"),
new( "gpt-4o", "gpt-4o"),
new( "gpt-4o-mini", "gpt-4o-mini" ),
new( "chatgpt-4o-latest", "chatgpt-4o-latest" ),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class TextChatModelDataSourceHandler(InvocationContext invocationContext)
[
"gpt-5.1",
"gpt-5.1-codex-mini",
"gpt-5.2",
"gpt-5",
"gpt-5-mini",
"gpt-5-nano",
Expand Down