@inference-gateway/sdk 0.8.3 → 0.8.5
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 +14 -0
- package/dist/src/types/generated/index.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.8.5](https://github.com/inference-gateway/typescript-sdk/compare/v0.8.4...v0.8.5) (2026-05-07)
|
|
6
|
+
|
|
7
|
+
### 🔧 Miscellaneous
|
|
8
|
+
|
|
9
|
+
* **openapi:** Sync vendored openapi.yaml with schemas@97599d4 ([#25](https://github.com/inference-gateway/typescript-sdk/issues/25)) ([0975a85](https://github.com/inference-gateway/typescript-sdk/commit/0975a85f33a612f5c5a3d57c769a12e199690a31)), closes [#24](https://github.com/inference-gateway/typescript-sdk/issues/24)
|
|
10
|
+
|
|
11
|
+
## [0.8.4](https://github.com/inference-gateway/typescript-sdk/compare/v0.8.3...v0.8.4) (2026-05-07)
|
|
12
|
+
|
|
13
|
+
### ♻️ Improvements
|
|
14
|
+
|
|
15
|
+
* Rename all instances of deepseek-reasoner to deepseek-v4-pro ([cab55cc](https://github.com/inference-gateway/typescript-sdk/commit/cab55cc743d3a421efa1779ff576cbf4b6e70ca4))
|
|
16
|
+
* Simplify conditions for triggering Claude Code and update system prompt instructions ([a20d49d](https://github.com/inference-gateway/typescript-sdk/commit/a20d49d008966f2e1c979cbf9e7bb2684b8fd4e4))
|
|
17
|
+
* Update branch prefix quotes and enhance system prompt instructions in Claude Code workflow ([0c9b393](https://github.com/inference-gateway/typescript-sdk/commit/0c9b3939ef6a6f223d7f646bbf6780ebbe980aab))
|
|
18
|
+
|
|
5
19
|
## [0.8.3](https://github.com/inference-gateway/typescript-sdk/compare/v0.8.2...v0.8.3) (2026-05-06)
|
|
6
20
|
|
|
7
21
|
### 👷 CI
|
|
@@ -408,6 +408,13 @@ export interface components {
|
|
|
408
408
|
/** @description The index of the choice in the list of choices. */
|
|
409
409
|
index: number;
|
|
410
410
|
message: components['schemas']['Message'];
|
|
411
|
+
/** @description Log probability information for the choice. */
|
|
412
|
+
logprobs?: {
|
|
413
|
+
/** @description A list of message content tokens with log probability information. */
|
|
414
|
+
content: components['schemas']['ChatCompletionTokenLogprob'][];
|
|
415
|
+
/** @description A list of message refusal tokens with log probability information. */
|
|
416
|
+
refusal: components['schemas']['ChatCompletionTokenLogprob'][];
|
|
417
|
+
} | null;
|
|
411
418
|
};
|
|
412
419
|
ChatCompletionStreamChoice: {
|
|
413
420
|
delta: components['schemas']['ChatCompletionStreamResponseDelta'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inference-gateway/sdk",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
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",
|