@inference-gateway/sdk 0.8.4 → 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 CHANGED
@@ -2,6 +2,12 @@
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
+
5
11
  ## [0.8.4](https://github.com/inference-gateway/typescript-sdk/compare/v0.8.3...v0.8.4) (2026-05-07)
6
12
 
7
13
  ### ♻️ Improvements
@@ -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.4",
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",