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 codegen/generator/src/OpenAI.Library.Plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.TypeSpec.Generator.ClientModel" Version="1.0.0-alpha.20251111.2" />
<PackageReference Include="Microsoft.TypeSpec.Generator.ClientModel" Version="1.0.0-alpha.20251113.2" />
</ItemGroup>

<!-- Copy output to package dist path for local execution and -->
Expand Down
8 changes: 4 additions & 4 deletions codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
],
"dependencies": {
"@open-ai/plugin": "file:",
"@azure-tools/typespec-client-generator-core": "0.61.0",
"@typespec/http-client-csharp": "1.0.0-alpha.20251111.2",
"@typespec/http": "1.5.0",
"@typespec/openapi": "1.5.0"
"@azure-tools/typespec-client-generator-core": "0.62.0",
"@typespec/http-client-csharp": "1.0.0-alpha.20251113.2",
"@typespec/http": "1.6.0",
"@typespec/openapi": "1.6.0"
},
"devDependencies": {
"@types/node": "^22.8.1",
Expand Down
304 changes: 152 additions & 152 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions specification/base/typespec/chat/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,8 @@ model CreateChatCompletionRequest {
If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result.
Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.
""")
@minValue(-9223372036854776000)
@maxValue(9223372036854776000)
@minValue(-9223372036854775808)
@maxValue(9223372036854775807)
seed?: int64 | null;

stream_options?: ChatCompletionStreamOptions | null = null;
Expand Down
Loading