@inference-gateway/sdk 0.3.5-rc.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/src/types/generated/index.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.4.0](https://github.com/inference-gateway/typescript-sdk/compare/v0.3.4...v0.4.0) (2025-03-31)
|
|
6
|
+
|
|
7
|
+
### ✨ Features
|
|
8
|
+
|
|
9
|
+
* Add reasoning_content to streaming deltas if they exists ([#5](https://github.com/inference-gateway/typescript-sdk/issues/5)) ([2a2c546](https://github.com/inference-gateway/typescript-sdk/commit/2a2c546fe50e35e2a0f8ef076c0251867b959e38))
|
|
10
|
+
|
|
11
|
+
## [0.4.0-rc.1](https://github.com/inference-gateway/typescript-sdk/compare/v0.3.5-rc.1...v0.4.0-rc.1) (2025-03-31)
|
|
12
|
+
|
|
13
|
+
### ✨ Features
|
|
14
|
+
|
|
15
|
+
* Add reasoning_content field to chunk message in OpenAPI specification ([4de08ed](https://github.com/inference-gateway/typescript-sdk/commit/4de08ed46f6078f77838bd9c4bae5e46eb12476c))
|
|
16
|
+
|
|
5
17
|
## [0.3.5-rc.1](https://github.com/inference-gateway/typescript-sdk/compare/v0.3.4...v0.3.5-rc.1) (2025-03-31)
|
|
6
18
|
|
|
7
19
|
### ♻️ Improvements
|
|
@@ -356,6 +356,8 @@ export interface components {
|
|
|
356
356
|
ChatCompletionStreamResponseDelta: {
|
|
357
357
|
/** @description The contents of the chunk message. */
|
|
358
358
|
content?: string;
|
|
359
|
+
/** @description The reasoning content of the chunk message. */
|
|
360
|
+
reasoning_content?: string;
|
|
359
361
|
tool_calls?: components['schemas']['ChatCompletionMessageToolCallChunk'][];
|
|
360
362
|
role?: components['schemas']['MessageRole'];
|
|
361
363
|
/** @description The refusal message generated by the model. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inference-gateway/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "An SDK written in Typescript for the [Inference Gateway](https://github.com/inference-gateway/inference-gateway).",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|