ogx-client 0.7.2-rc1 → 0.7.3
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/.devcontainer/devcontainer.json +15 -0
- package/.eslintrc.js +16 -0
- package/.github/workflows/ci.yml +94 -0
- package/.github/workflows/integration-tests.yml +133 -0
- package/.github/workflows/publish-npm.yml +32 -0
- package/.github/workflows/release-doctor.yml +21 -0
- package/.gitignore +13 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +7 -0
- package/.release-please-manifest.json +3 -0
- package/.stats.yml +4 -0
- package/Brewfile +1 -0
- package/CODE_OF_CONDUCT.md +80 -0
- package/CONTRIBUTING.md +112 -0
- package/SECURITY.md +27 -0
- package/api.md +337 -0
- package/bin/check-release-environment +22 -0
- package/bin/publish-npm +61 -0
- package/dist/CHANGELOG.md +512 -0
- package/dist/LICENSE +7 -0
- package/dist/README.md +391 -0
- package/dist/package.json +108 -0
- package/dist/src/_shims/MultipartBody.ts +15 -0
- package/dist/src/_shims/README.md +46 -0
- package/dist/src/_shims/auto/runtime-bun.ts +10 -0
- package/dist/src/_shims/auto/runtime-node.ts +10 -0
- package/dist/src/_shims/auto/runtime.ts +10 -0
- package/dist/src/_shims/auto/types-node.ts +10 -0
- package/dist/src/_shims/auto/types.d.ts +107 -0
- package/dist/src/_shims/auto/types.js +9 -0
- package/dist/src/_shims/auto/types.mjs +10 -0
- package/dist/src/_shims/bun-runtime.ts +20 -0
- package/dist/src/_shims/index.d.ts +89 -0
- package/dist/src/_shims/index.js +23 -0
- package/dist/src/_shims/index.mjs +18 -0
- package/dist/src/_shims/manual-types.d.ts +18 -0
- package/dist/src/_shims/manual-types.js +9 -0
- package/dist/src/_shims/manual-types.mjs +10 -0
- package/dist/src/_shims/node-runtime.ts +87 -0
- package/dist/src/_shims/node-types.d.ts +48 -0
- package/dist/src/_shims/node-types.js +9 -0
- package/dist/src/_shims/node-types.mjs +10 -0
- package/dist/src/_shims/registry.ts +73 -0
- package/dist/src/_shims/web-runtime.ts +109 -0
- package/dist/src/_shims/web-types.d.ts +89 -0
- package/dist/src/_shims/web-types.js +9 -0
- package/dist/src/_shims/web-types.mjs +10 -0
- package/dist/src/core.ts +1253 -0
- package/dist/src/error.ts +137 -0
- package/dist/src/index.ts +554 -0
- package/dist/src/internal/decoders/line.ts +182 -0
- package/dist/src/internal/qs/LICENSE.md +13 -0
- package/dist/src/internal/qs/README.md +3 -0
- package/dist/src/internal/qs/formats.ts +15 -0
- package/dist/src/internal/qs/index.ts +19 -0
- package/dist/src/internal/qs/stringify.ts +394 -0
- package/dist/src/internal/qs/types.ts +77 -0
- package/dist/src/internal/qs/utils.ts +271 -0
- package/dist/src/internal/stream-utils.ts +38 -0
- package/dist/src/internal/utils/query.ts +13 -0
- package/dist/src/lib/.keep +4 -0
- package/dist/src/lib/response-helpers.ts +60 -0
- package/dist/src/pagination.ts +80 -0
- package/dist/src/resource.ts +18 -0
- package/dist/src/resources/alpha/admin.ts +87 -0
- package/dist/src/resources/alpha/alpha.ts +31 -0
- package/dist/src/resources/alpha/benchmarks.ts +152 -0
- package/dist/src/resources/alpha/index.ts +11 -0
- package/dist/src/resources/alpha/inference.ts +191 -0
- package/dist/src/resources/alpha.ts +9 -0
- package/dist/src/resources/batches.ts +692 -0
- package/dist/src/resources/chat/chat.ts +351 -0
- package/dist/src/resources/chat/completions.ts +2430 -0
- package/dist/src/resources/chat/index.ts +19 -0
- package/dist/src/resources/chat.ts +9 -0
- package/dist/src/resources/completions.ts +350 -0
- package/dist/src/resources/conversations/conversations.ts +627 -0
- package/dist/src/resources/conversations/index.ts +25 -0
- package/dist/src/resources/conversations/items.ts +2061 -0
- package/dist/src/resources/conversations.ts +9 -0
- package/dist/src/resources/embeddings.ts +130 -0
- package/dist/src/resources/files.ts +225 -0
- package/dist/src/resources/index.ts +104 -0
- package/dist/src/resources/inspect.ts +30 -0
- package/dist/src/resources/models/index.ts +10 -0
- package/dist/src/resources/models/models.ts +133 -0
- package/dist/src/resources/models/openai.ts +20 -0
- package/dist/src/resources/models.ts +9 -0
- package/dist/src/resources/moderations.ts +97 -0
- package/dist/src/resources/prompts/index.ts +19 -0
- package/dist/src/resources/prompts/prompts.ts +188 -0
- package/dist/src/resources/prompts/versions.ts +27 -0
- package/dist/src/resources/prompts.ts +9 -0
- package/dist/src/resources/providers.ts +41 -0
- package/dist/src/resources/responses/index.ts +26 -0
- package/dist/src/resources/responses/input-items.ts +571 -0
- package/dist/src/resources/responses/responses.ts +6718 -0
- package/dist/src/resources/responses.ts +9 -0
- package/dist/src/resources/routes.ts +55 -0
- package/dist/src/resources/safety.ts +367 -0
- package/dist/src/resources/shared.ts +544 -0
- package/dist/src/resources/shields.ts +119 -0
- package/dist/src/resources/vector-io.ts +485 -0
- package/dist/src/resources/vector-stores/file-batches.ts +386 -0
- package/dist/src/resources/vector-stores/files.ts +496 -0
- package/dist/src/resources/vector-stores/index.ts +38 -0
- package/dist/src/resources/vector-stores/vector-stores.ts +588 -0
- package/dist/src/resources/vector-stores.ts +9 -0
- package/dist/src/resources.ts +7 -0
- package/dist/src/shims/node.ts +56 -0
- package/dist/src/shims/web.ts +56 -0
- package/dist/src/streaming.ts +315 -0
- package/dist/src/uploads.ts +261 -0
- package/dist/src/version.ts +7 -0
- package/dist/version.d.ts +2 -0
- package/dist/version.d.ts.map +1 -0
- package/{version.js → dist/version.js} +1 -1
- package/{version.js.map → dist/version.js.map} +1 -1
- package/dist/version.mjs +7 -0
- package/{version.mjs.map → dist/version.mjs.map} +1 -1
- package/examples/.keep +4 -0
- package/jest.config.ts +29 -0
- package/package.json +55 -35
- package/release-please-config.json +64 -0
- package/scripts/bootstrap +30 -0
- package/scripts/build +56 -0
- package/scripts/fast-format +40 -0
- package/scripts/format +8 -0
- package/scripts/lint +11 -0
- package/scripts/mock +52 -0
- package/scripts/test +56 -0
- package/scripts/utils/check-is-in-git-install.sh +15 -0
- package/scripts/utils/check-version.cjs +27 -0
- package/scripts/utils/fix-index-exports.cjs +21 -0
- package/scripts/utils/git-swap.sh +19 -0
- package/scripts/utils/make-dist-package-json.cjs +28 -0
- package/scripts/utils/postprocess-files.cjs +172 -0
- package/scripts/utils/upload-artifact.sh +33 -0
- package/src/_shims/auto/runtime-deno.ts +10 -0
- package/src/_shims/auto/types-deno.ts +10 -0
- package/src/_shims/auto/types.d.ts +18 -18
- package/src/_shims/index-deno.ts +118 -0
- package/src/_shims/index.d.ts +1 -1
- package/src/_shims/index.mjs +1 -1
- package/src/lib/.keep +4 -0
- package/src/version.ts +1 -1
- package/tests/api-resources/alpha/admin.test.ts +111 -0
- package/tests/api-resources/alpha/inference.test.ts +38 -0
- package/tests/api-resources/batches.test.ts +100 -0
- package/tests/api-resources/chat/completions.test.ts +117 -0
- package/tests/api-resources/completions.test.ts +48 -0
- package/tests/api-resources/conversations/conversations.test.ts +76 -0
- package/tests/api-resources/conversations/items.test.ts +117 -0
- package/tests/api-resources/embeddings.test.ts +35 -0
- package/tests/api-resources/files.test.ts +123 -0
- package/tests/api-resources/inspect.test.ts +50 -0
- package/tests/api-resources/models/models.test.ts +50 -0
- package/tests/api-resources/models/openai.test.ts +32 -0
- package/tests/api-resources/moderations.test.ts +29 -0
- package/tests/api-resources/prompts/prompts.test.ts +125 -0
- package/tests/api-resources/prompts/versions.test.ts +32 -0
- package/tests/api-resources/providers.test.ts +50 -0
- package/tests/api-resources/responses/input-items.test.ts +49 -0
- package/tests/api-resources/responses/responses.test.ts +177 -0
- package/tests/api-resources/routes.test.ts +39 -0
- package/tests/api-resources/safety.test.ts +41 -0
- package/tests/api-resources/shields.test.ts +88 -0
- package/tests/api-resources/vector-io.test.ts +84 -0
- package/tests/api-resources/vector-stores/file-batches.test.ts +103 -0
- package/tests/api-resources/vector-stores/files.test.ts +153 -0
- package/tests/api-resources/vector-stores/vector-stores.test.ts +134 -0
- package/tests/form.test.ts +71 -0
- package/tests/index.test.ts +438 -0
- package/tests/internal/decoders/line.test.ts +134 -0
- package/tests/qs/empty-keys-cases.ts +277 -0
- package/tests/qs/stringify.test.ts +2238 -0
- package/tests/qs/utils.test.ts +175 -0
- package/tests/responses.test.ts +91 -0
- package/tests/streaming.test.ts +250 -0
- package/tests/stringifyQuery.test.ts +27 -0
- package/tests/uploads.test.ts +71 -0
- package/tsc-multi.json +7 -0
- package/tsconfig.build.json +18 -0
- package/tsconfig.deno.json +15 -0
- package/tsconfig.dist-src.json +11 -0
- package/tsconfig.json +38 -0
- package/ogx-client-0.7.2-rc1.tgz +0 -0
- package/version.d.ts +0 -2
- package/version.d.ts.map +0 -1
- package/version.mjs +0 -7
- /package/{_shims → dist/_shims}/MultipartBody.d.ts +0 -0
- /package/{_shims → dist/_shims}/MultipartBody.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/MultipartBody.js +0 -0
- /package/{_shims → dist/_shims}/MultipartBody.js.map +0 -0
- /package/{_shims → dist/_shims}/MultipartBody.mjs +0 -0
- /package/{_shims → dist/_shims}/MultipartBody.mjs.map +0 -0
- /package/{_shims → dist/_shims}/README.md +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.d.ts +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.js +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.js.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.mjs +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-bun.mjs.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.d.ts +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.js +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.js.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.mjs +0 -0
- /package/{_shims → dist/_shims}/auto/runtime-node.mjs.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.d.ts +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.js +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.js.map +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.mjs +0 -0
- /package/{_shims → dist/_shims}/auto/runtime.mjs.map +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.d.ts +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.js +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.js.map +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.mjs +0 -0
- /package/{_shims → dist/_shims}/auto/types-node.mjs.map +0 -0
- /package/{_shims → dist/_shims}/auto/types.d.ts +0 -0
- /package/{_shims → dist/_shims}/auto/types.js +0 -0
- /package/{_shims → dist/_shims}/auto/types.mjs +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.d.ts +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.js +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.js.map +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.mjs +0 -0
- /package/{_shims → dist/_shims}/bun-runtime.mjs.map +0 -0
- /package/{_shims → dist/_shims}/index.d.ts +0 -0
- /package/{_shims → dist/_shims}/index.js +0 -0
- /package/{_shims → dist/_shims}/index.mjs +0 -0
- /package/{_shims → dist/_shims}/manual-types.d.ts +0 -0
- /package/{_shims → dist/_shims}/manual-types.js +0 -0
- /package/{_shims → dist/_shims}/manual-types.mjs +0 -0
- /package/{_shims → dist/_shims}/node-runtime.d.ts +0 -0
- /package/{_shims → dist/_shims}/node-runtime.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/node-runtime.js +0 -0
- /package/{_shims → dist/_shims}/node-runtime.js.map +0 -0
- /package/{_shims → dist/_shims}/node-runtime.mjs +0 -0
- /package/{_shims → dist/_shims}/node-runtime.mjs.map +0 -0
- /package/{_shims → dist/_shims}/node-types.d.ts +0 -0
- /package/{_shims → dist/_shims}/node-types.js +0 -0
- /package/{_shims → dist/_shims}/node-types.mjs +0 -0
- /package/{_shims → dist/_shims}/registry.d.ts +0 -0
- /package/{_shims → dist/_shims}/registry.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/registry.js +0 -0
- /package/{_shims → dist/_shims}/registry.js.map +0 -0
- /package/{_shims → dist/_shims}/registry.mjs +0 -0
- /package/{_shims → dist/_shims}/registry.mjs.map +0 -0
- /package/{_shims → dist/_shims}/web-runtime.d.ts +0 -0
- /package/{_shims → dist/_shims}/web-runtime.d.ts.map +0 -0
- /package/{_shims → dist/_shims}/web-runtime.js +0 -0
- /package/{_shims → dist/_shims}/web-runtime.js.map +0 -0
- /package/{_shims → dist/_shims}/web-runtime.mjs +0 -0
- /package/{_shims → dist/_shims}/web-runtime.mjs.map +0 -0
- /package/{_shims → dist/_shims}/web-types.d.ts +0 -0
- /package/{_shims → dist/_shims}/web-types.js +0 -0
- /package/{_shims → dist/_shims}/web-types.mjs +0 -0
- /package/{core.d.ts → dist/core.d.ts} +0 -0
- /package/{core.d.ts.map → dist/core.d.ts.map} +0 -0
- /package/{core.js → dist/core.js} +0 -0
- /package/{core.js.map → dist/core.js.map} +0 -0
- /package/{core.mjs → dist/core.mjs} +0 -0
- /package/{core.mjs.map → dist/core.mjs.map} +0 -0
- /package/{error.d.ts → dist/error.d.ts} +0 -0
- /package/{error.d.ts.map → dist/error.d.ts.map} +0 -0
- /package/{error.js → dist/error.js} +0 -0
- /package/{error.js.map → dist/error.js.map} +0 -0
- /package/{error.mjs → dist/error.mjs} +0 -0
- /package/{error.mjs.map → dist/error.mjs.map} +0 -0
- /package/{index.d.mts → dist/index.d.mts} +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.d.ts.map → dist/index.d.ts.map} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{index.js.map → dist/index.js.map} +0 -0
- /package/{index.mjs → dist/index.mjs} +0 -0
- /package/{index.mjs.map → dist/index.mjs.map} +0 -0
- /package/{internal → dist/internal}/decoders/line.d.ts +0 -0
- /package/{internal → dist/internal}/decoders/line.d.ts.map +0 -0
- /package/{internal → dist/internal}/decoders/line.js +0 -0
- /package/{internal → dist/internal}/decoders/line.js.map +0 -0
- /package/{internal → dist/internal}/decoders/line.mjs +0 -0
- /package/{internal → dist/internal}/decoders/line.mjs.map +0 -0
- /package/{internal → dist/internal}/qs/formats.d.ts +0 -0
- /package/{internal → dist/internal}/qs/formats.d.ts.map +0 -0
- /package/{internal → dist/internal}/qs/formats.js +0 -0
- /package/{internal → dist/internal}/qs/formats.js.map +0 -0
- /package/{internal → dist/internal}/qs/formats.mjs +0 -0
- /package/{internal → dist/internal}/qs/formats.mjs.map +0 -0
- /package/{internal → dist/internal}/qs/index.d.ts +0 -0
- /package/{internal → dist/internal}/qs/index.d.ts.map +0 -0
- /package/{internal → dist/internal}/qs/index.js +0 -0
- /package/{internal → dist/internal}/qs/index.js.map +0 -0
- /package/{internal → dist/internal}/qs/index.mjs +0 -0
- /package/{internal → dist/internal}/qs/index.mjs.map +0 -0
- /package/{internal → dist/internal}/qs/stringify.d.ts +0 -0
- /package/{internal → dist/internal}/qs/stringify.d.ts.map +0 -0
- /package/{internal → dist/internal}/qs/stringify.js +0 -0
- /package/{internal → dist/internal}/qs/stringify.js.map +0 -0
- /package/{internal → dist/internal}/qs/stringify.mjs +0 -0
- /package/{internal → dist/internal}/qs/stringify.mjs.map +0 -0
- /package/{internal → dist/internal}/qs/types.d.ts +0 -0
- /package/{internal → dist/internal}/qs/types.d.ts.map +0 -0
- /package/{internal → dist/internal}/qs/types.js +0 -0
- /package/{internal → dist/internal}/qs/types.js.map +0 -0
- /package/{internal → dist/internal}/qs/types.mjs +0 -0
- /package/{internal → dist/internal}/qs/types.mjs.map +0 -0
- /package/{internal → dist/internal}/qs/utils.d.ts +0 -0
- /package/{internal → dist/internal}/qs/utils.d.ts.map +0 -0
- /package/{internal → dist/internal}/qs/utils.js +0 -0
- /package/{internal → dist/internal}/qs/utils.js.map +0 -0
- /package/{internal → dist/internal}/qs/utils.mjs +0 -0
- /package/{internal → dist/internal}/qs/utils.mjs.map +0 -0
- /package/{internal → dist/internal}/stream-utils.d.ts +0 -0
- /package/{internal → dist/internal}/stream-utils.d.ts.map +0 -0
- /package/{internal → dist/internal}/stream-utils.js +0 -0
- /package/{internal → dist/internal}/stream-utils.js.map +0 -0
- /package/{internal → dist/internal}/stream-utils.mjs +0 -0
- /package/{internal → dist/internal}/stream-utils.mjs.map +0 -0
- /package/{internal → dist/internal}/utils/query.d.ts +0 -0
- /package/{internal → dist/internal}/utils/query.d.ts.map +0 -0
- /package/{internal → dist/internal}/utils/query.js +0 -0
- /package/{internal → dist/internal}/utils/query.js.map +0 -0
- /package/{internal → dist/internal}/utils/query.mjs +0 -0
- /package/{internal → dist/internal}/utils/query.mjs.map +0 -0
- /package/{lib → dist/lib}/response-helpers.d.ts +0 -0
- /package/{lib → dist/lib}/response-helpers.d.ts.map +0 -0
- /package/{lib → dist/lib}/response-helpers.js +0 -0
- /package/{lib → dist/lib}/response-helpers.js.map +0 -0
- /package/{lib → dist/lib}/response-helpers.mjs +0 -0
- /package/{lib → dist/lib}/response-helpers.mjs.map +0 -0
- /package/{pagination.d.ts → dist/pagination.d.ts} +0 -0
- /package/{pagination.d.ts.map → dist/pagination.d.ts.map} +0 -0
- /package/{pagination.js → dist/pagination.js} +0 -0
- /package/{pagination.js.map → dist/pagination.js.map} +0 -0
- /package/{pagination.mjs → dist/pagination.mjs} +0 -0
- /package/{pagination.mjs.map → dist/pagination.mjs.map} +0 -0
- /package/{resource.d.ts → dist/resource.d.ts} +0 -0
- /package/{resource.d.ts.map → dist/resource.d.ts.map} +0 -0
- /package/{resource.js → dist/resource.js} +0 -0
- /package/{resource.js.map → dist/resource.js.map} +0 -0
- /package/{resource.mjs → dist/resource.mjs} +0 -0
- /package/{resource.mjs.map → dist/resource.mjs.map} +0 -0
- /package/{resources → dist/resources}/alpha/admin.d.ts +0 -0
- /package/{resources → dist/resources}/alpha/admin.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha/admin.js +0 -0
- /package/{resources → dist/resources}/alpha/admin.js.map +0 -0
- /package/{resources → dist/resources}/alpha/admin.mjs +0 -0
- /package/{resources → dist/resources}/alpha/admin.mjs.map +0 -0
- /package/{resources → dist/resources}/alpha/alpha.d.ts +0 -0
- /package/{resources → dist/resources}/alpha/alpha.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha/alpha.js +0 -0
- /package/{resources → dist/resources}/alpha/alpha.js.map +0 -0
- /package/{resources → dist/resources}/alpha/alpha.mjs +0 -0
- /package/{resources → dist/resources}/alpha/alpha.mjs.map +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.d.ts +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.js +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.js.map +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.mjs +0 -0
- /package/{resources → dist/resources}/alpha/benchmarks.mjs.map +0 -0
- /package/{resources → dist/resources}/alpha/index.d.ts +0 -0
- /package/{resources → dist/resources}/alpha/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha/index.js +0 -0
- /package/{resources → dist/resources}/alpha/index.js.map +0 -0
- /package/{resources → dist/resources}/alpha/index.mjs +0 -0
- /package/{resources → dist/resources}/alpha/index.mjs.map +0 -0
- /package/{resources → dist/resources}/alpha/inference.d.ts +0 -0
- /package/{resources → dist/resources}/alpha/inference.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha/inference.js +0 -0
- /package/{resources → dist/resources}/alpha/inference.js.map +0 -0
- /package/{resources → dist/resources}/alpha/inference.mjs +0 -0
- /package/{resources → dist/resources}/alpha/inference.mjs.map +0 -0
- /package/{resources → dist/resources}/alpha.d.ts +0 -0
- /package/{resources → dist/resources}/alpha.d.ts.map +0 -0
- /package/{resources → dist/resources}/alpha.js +0 -0
- /package/{resources → dist/resources}/alpha.js.map +0 -0
- /package/{resources → dist/resources}/alpha.mjs +0 -0
- /package/{resources → dist/resources}/alpha.mjs.map +0 -0
- /package/{resources → dist/resources}/batches.d.ts +0 -0
- /package/{resources → dist/resources}/batches.d.ts.map +0 -0
- /package/{resources → dist/resources}/batches.js +0 -0
- /package/{resources → dist/resources}/batches.js.map +0 -0
- /package/{resources → dist/resources}/batches.mjs +0 -0
- /package/{resources → dist/resources}/batches.mjs.map +0 -0
- /package/{resources → dist/resources}/chat/chat.d.ts +0 -0
- /package/{resources → dist/resources}/chat/chat.d.ts.map +0 -0
- /package/{resources → dist/resources}/chat/chat.js +0 -0
- /package/{resources → dist/resources}/chat/chat.js.map +0 -0
- /package/{resources → dist/resources}/chat/chat.mjs +0 -0
- /package/{resources → dist/resources}/chat/chat.mjs.map +0 -0
- /package/{resources → dist/resources}/chat/completions.d.ts +0 -0
- /package/{resources → dist/resources}/chat/completions.d.ts.map +0 -0
- /package/{resources → dist/resources}/chat/completions.js +0 -0
- /package/{resources → dist/resources}/chat/completions.js.map +0 -0
- /package/{resources → dist/resources}/chat/completions.mjs +0 -0
- /package/{resources → dist/resources}/chat/completions.mjs.map +0 -0
- /package/{resources → dist/resources}/chat/index.d.ts +0 -0
- /package/{resources → dist/resources}/chat/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/chat/index.js +0 -0
- /package/{resources → dist/resources}/chat/index.js.map +0 -0
- /package/{resources → dist/resources}/chat/index.mjs +0 -0
- /package/{resources → dist/resources}/chat/index.mjs.map +0 -0
- /package/{resources → dist/resources}/chat.d.ts +0 -0
- /package/{resources → dist/resources}/chat.d.ts.map +0 -0
- /package/{resources → dist/resources}/chat.js +0 -0
- /package/{resources → dist/resources}/chat.js.map +0 -0
- /package/{resources → dist/resources}/chat.mjs +0 -0
- /package/{resources → dist/resources}/chat.mjs.map +0 -0
- /package/{resources → dist/resources}/completions.d.ts +0 -0
- /package/{resources → dist/resources}/completions.d.ts.map +0 -0
- /package/{resources → dist/resources}/completions.js +0 -0
- /package/{resources → dist/resources}/completions.js.map +0 -0
- /package/{resources → dist/resources}/completions.mjs +0 -0
- /package/{resources → dist/resources}/completions.mjs.map +0 -0
- /package/{resources → dist/resources}/conversations/conversations.d.ts +0 -0
- /package/{resources → dist/resources}/conversations/conversations.d.ts.map +0 -0
- /package/{resources → dist/resources}/conversations/conversations.js +0 -0
- /package/{resources → dist/resources}/conversations/conversations.js.map +0 -0
- /package/{resources → dist/resources}/conversations/conversations.mjs +0 -0
- /package/{resources → dist/resources}/conversations/conversations.mjs.map +0 -0
- /package/{resources → dist/resources}/conversations/index.d.ts +0 -0
- /package/{resources → dist/resources}/conversations/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/conversations/index.js +0 -0
- /package/{resources → dist/resources}/conversations/index.js.map +0 -0
- /package/{resources → dist/resources}/conversations/index.mjs +0 -0
- /package/{resources → dist/resources}/conversations/index.mjs.map +0 -0
- /package/{resources → dist/resources}/conversations/items.d.ts +0 -0
- /package/{resources → dist/resources}/conversations/items.d.ts.map +0 -0
- /package/{resources → dist/resources}/conversations/items.js +0 -0
- /package/{resources → dist/resources}/conversations/items.js.map +0 -0
- /package/{resources → dist/resources}/conversations/items.mjs +0 -0
- /package/{resources → dist/resources}/conversations/items.mjs.map +0 -0
- /package/{resources → dist/resources}/conversations.d.ts +0 -0
- /package/{resources → dist/resources}/conversations.d.ts.map +0 -0
- /package/{resources → dist/resources}/conversations.js +0 -0
- /package/{resources → dist/resources}/conversations.js.map +0 -0
- /package/{resources → dist/resources}/conversations.mjs +0 -0
- /package/{resources → dist/resources}/conversations.mjs.map +0 -0
- /package/{resources → dist/resources}/embeddings.d.ts +0 -0
- /package/{resources → dist/resources}/embeddings.d.ts.map +0 -0
- /package/{resources → dist/resources}/embeddings.js +0 -0
- /package/{resources → dist/resources}/embeddings.js.map +0 -0
- /package/{resources → dist/resources}/embeddings.mjs +0 -0
- /package/{resources → dist/resources}/embeddings.mjs.map +0 -0
- /package/{resources → dist/resources}/files.d.ts +0 -0
- /package/{resources → dist/resources}/files.d.ts.map +0 -0
- /package/{resources → dist/resources}/files.js +0 -0
- /package/{resources → dist/resources}/files.js.map +0 -0
- /package/{resources → dist/resources}/files.mjs +0 -0
- /package/{resources → dist/resources}/files.mjs.map +0 -0
- /package/{resources → dist/resources}/index.d.ts +0 -0
- /package/{resources → dist/resources}/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/index.js +0 -0
- /package/{resources → dist/resources}/index.js.map +0 -0
- /package/{resources → dist/resources}/index.mjs +0 -0
- /package/{resources → dist/resources}/index.mjs.map +0 -0
- /package/{resources → dist/resources}/inspect.d.ts +0 -0
- /package/{resources → dist/resources}/inspect.d.ts.map +0 -0
- /package/{resources → dist/resources}/inspect.js +0 -0
- /package/{resources → dist/resources}/inspect.js.map +0 -0
- /package/{resources → dist/resources}/inspect.mjs +0 -0
- /package/{resources → dist/resources}/inspect.mjs.map +0 -0
- /package/{resources → dist/resources}/models/index.d.ts +0 -0
- /package/{resources → dist/resources}/models/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/models/index.js +0 -0
- /package/{resources → dist/resources}/models/index.js.map +0 -0
- /package/{resources → dist/resources}/models/index.mjs +0 -0
- /package/{resources → dist/resources}/models/index.mjs.map +0 -0
- /package/{resources → dist/resources}/models/models.d.ts +0 -0
- /package/{resources → dist/resources}/models/models.d.ts.map +0 -0
- /package/{resources → dist/resources}/models/models.js +0 -0
- /package/{resources → dist/resources}/models/models.js.map +0 -0
- /package/{resources → dist/resources}/models/models.mjs +0 -0
- /package/{resources → dist/resources}/models/models.mjs.map +0 -0
- /package/{resources → dist/resources}/models/openai.d.ts +0 -0
- /package/{resources → dist/resources}/models/openai.d.ts.map +0 -0
- /package/{resources → dist/resources}/models/openai.js +0 -0
- /package/{resources → dist/resources}/models/openai.js.map +0 -0
- /package/{resources → dist/resources}/models/openai.mjs +0 -0
- /package/{resources → dist/resources}/models/openai.mjs.map +0 -0
- /package/{resources → dist/resources}/models.d.ts +0 -0
- /package/{resources → dist/resources}/models.d.ts.map +0 -0
- /package/{resources → dist/resources}/models.js +0 -0
- /package/{resources → dist/resources}/models.js.map +0 -0
- /package/{resources → dist/resources}/models.mjs +0 -0
- /package/{resources → dist/resources}/models.mjs.map +0 -0
- /package/{resources → dist/resources}/moderations.d.ts +0 -0
- /package/{resources → dist/resources}/moderations.d.ts.map +0 -0
- /package/{resources → dist/resources}/moderations.js +0 -0
- /package/{resources → dist/resources}/moderations.js.map +0 -0
- /package/{resources → dist/resources}/moderations.mjs +0 -0
- /package/{resources → dist/resources}/moderations.mjs.map +0 -0
- /package/{resources → dist/resources}/prompts/index.d.ts +0 -0
- /package/{resources → dist/resources}/prompts/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/prompts/index.js +0 -0
- /package/{resources → dist/resources}/prompts/index.js.map +0 -0
- /package/{resources → dist/resources}/prompts/index.mjs +0 -0
- /package/{resources → dist/resources}/prompts/index.mjs.map +0 -0
- /package/{resources → dist/resources}/prompts/prompts.d.ts +0 -0
- /package/{resources → dist/resources}/prompts/prompts.d.ts.map +0 -0
- /package/{resources → dist/resources}/prompts/prompts.js +0 -0
- /package/{resources → dist/resources}/prompts/prompts.js.map +0 -0
- /package/{resources → dist/resources}/prompts/prompts.mjs +0 -0
- /package/{resources → dist/resources}/prompts/prompts.mjs.map +0 -0
- /package/{resources → dist/resources}/prompts/versions.d.ts +0 -0
- /package/{resources → dist/resources}/prompts/versions.d.ts.map +0 -0
- /package/{resources → dist/resources}/prompts/versions.js +0 -0
- /package/{resources → dist/resources}/prompts/versions.js.map +0 -0
- /package/{resources → dist/resources}/prompts/versions.mjs +0 -0
- /package/{resources → dist/resources}/prompts/versions.mjs.map +0 -0
- /package/{resources → dist/resources}/prompts.d.ts +0 -0
- /package/{resources → dist/resources}/prompts.d.ts.map +0 -0
- /package/{resources → dist/resources}/prompts.js +0 -0
- /package/{resources → dist/resources}/prompts.js.map +0 -0
- /package/{resources → dist/resources}/prompts.mjs +0 -0
- /package/{resources → dist/resources}/prompts.mjs.map +0 -0
- /package/{resources → dist/resources}/providers.d.ts +0 -0
- /package/{resources → dist/resources}/providers.d.ts.map +0 -0
- /package/{resources → dist/resources}/providers.js +0 -0
- /package/{resources → dist/resources}/providers.js.map +0 -0
- /package/{resources → dist/resources}/providers.mjs +0 -0
- /package/{resources → dist/resources}/providers.mjs.map +0 -0
- /package/{resources → dist/resources}/responses/index.d.ts +0 -0
- /package/{resources → dist/resources}/responses/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/responses/index.js +0 -0
- /package/{resources → dist/resources}/responses/index.js.map +0 -0
- /package/{resources → dist/resources}/responses/index.mjs +0 -0
- /package/{resources → dist/resources}/responses/index.mjs.map +0 -0
- /package/{resources → dist/resources}/responses/input-items.d.ts +0 -0
- /package/{resources → dist/resources}/responses/input-items.d.ts.map +0 -0
- /package/{resources → dist/resources}/responses/input-items.js +0 -0
- /package/{resources → dist/resources}/responses/input-items.js.map +0 -0
- /package/{resources → dist/resources}/responses/input-items.mjs +0 -0
- /package/{resources → dist/resources}/responses/input-items.mjs.map +0 -0
- /package/{resources → dist/resources}/responses/responses.d.ts +0 -0
- /package/{resources → dist/resources}/responses/responses.d.ts.map +0 -0
- /package/{resources → dist/resources}/responses/responses.js +0 -0
- /package/{resources → dist/resources}/responses/responses.js.map +0 -0
- /package/{resources → dist/resources}/responses/responses.mjs +0 -0
- /package/{resources → dist/resources}/responses/responses.mjs.map +0 -0
- /package/{resources → dist/resources}/responses.d.ts +0 -0
- /package/{resources → dist/resources}/responses.d.ts.map +0 -0
- /package/{resources → dist/resources}/responses.js +0 -0
- /package/{resources → dist/resources}/responses.js.map +0 -0
- /package/{resources → dist/resources}/responses.mjs +0 -0
- /package/{resources → dist/resources}/responses.mjs.map +0 -0
- /package/{resources → dist/resources}/routes.d.ts +0 -0
- /package/{resources → dist/resources}/routes.d.ts.map +0 -0
- /package/{resources → dist/resources}/routes.js +0 -0
- /package/{resources → dist/resources}/routes.js.map +0 -0
- /package/{resources → dist/resources}/routes.mjs +0 -0
- /package/{resources → dist/resources}/routes.mjs.map +0 -0
- /package/{resources → dist/resources}/safety.d.ts +0 -0
- /package/{resources → dist/resources}/safety.d.ts.map +0 -0
- /package/{resources → dist/resources}/safety.js +0 -0
- /package/{resources → dist/resources}/safety.js.map +0 -0
- /package/{resources → dist/resources}/safety.mjs +0 -0
- /package/{resources → dist/resources}/safety.mjs.map +0 -0
- /package/{resources → dist/resources}/shared.d.ts +0 -0
- /package/{resources → dist/resources}/shared.d.ts.map +0 -0
- /package/{resources → dist/resources}/shared.js +0 -0
- /package/{resources → dist/resources}/shared.js.map +0 -0
- /package/{resources → dist/resources}/shared.mjs +0 -0
- /package/{resources → dist/resources}/shared.mjs.map +0 -0
- /package/{resources → dist/resources}/shields.d.ts +0 -0
- /package/{resources → dist/resources}/shields.d.ts.map +0 -0
- /package/{resources → dist/resources}/shields.js +0 -0
- /package/{resources → dist/resources}/shields.js.map +0 -0
- /package/{resources → dist/resources}/shields.mjs +0 -0
- /package/{resources → dist/resources}/shields.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-io.d.ts +0 -0
- /package/{resources → dist/resources}/vector-io.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-io.js +0 -0
- /package/{resources → dist/resources}/vector-io.js.map +0 -0
- /package/{resources → dist/resources}/vector-io.mjs +0 -0
- /package/{resources → dist/resources}/vector-io.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.d.ts +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.js +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.js.map +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.mjs +0 -0
- /package/{resources → dist/resources}/vector-stores/file-batches.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-stores/files.d.ts +0 -0
- /package/{resources → dist/resources}/vector-stores/files.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-stores/files.js +0 -0
- /package/{resources → dist/resources}/vector-stores/files.js.map +0 -0
- /package/{resources → dist/resources}/vector-stores/files.mjs +0 -0
- /package/{resources → dist/resources}/vector-stores/files.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-stores/index.d.ts +0 -0
- /package/{resources → dist/resources}/vector-stores/index.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-stores/index.js +0 -0
- /package/{resources → dist/resources}/vector-stores/index.js.map +0 -0
- /package/{resources → dist/resources}/vector-stores/index.mjs +0 -0
- /package/{resources → dist/resources}/vector-stores/index.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.d.ts +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.js +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.js.map +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.mjs +0 -0
- /package/{resources → dist/resources}/vector-stores/vector-stores.mjs.map +0 -0
- /package/{resources → dist/resources}/vector-stores.d.ts +0 -0
- /package/{resources → dist/resources}/vector-stores.d.ts.map +0 -0
- /package/{resources → dist/resources}/vector-stores.js +0 -0
- /package/{resources → dist/resources}/vector-stores.js.map +0 -0
- /package/{resources → dist/resources}/vector-stores.mjs +0 -0
- /package/{resources → dist/resources}/vector-stores.mjs.map +0 -0
- /package/{resources.d.ts → dist/resources.d.ts} +0 -0
- /package/{resources.d.ts.map → dist/resources.d.ts.map} +0 -0
- /package/{resources.js → dist/resources.js} +0 -0
- /package/{resources.js.map → dist/resources.js.map} +0 -0
- /package/{resources.mjs → dist/resources.mjs} +0 -0
- /package/{resources.mjs.map → dist/resources.mjs.map} +0 -0
- /package/{shims → dist/shims}/node.d.ts +0 -0
- /package/{shims → dist/shims}/node.d.ts.map +0 -0
- /package/{shims → dist/shims}/node.js +0 -0
- /package/{shims → dist/shims}/node.js.map +0 -0
- /package/{shims → dist/shims}/node.mjs +0 -0
- /package/{shims → dist/shims}/node.mjs.map +0 -0
- /package/{shims → dist/shims}/web.d.ts +0 -0
- /package/{shims → dist/shims}/web.d.ts.map +0 -0
- /package/{shims → dist/shims}/web.js +0 -0
- /package/{shims → dist/shims}/web.js.map +0 -0
- /package/{shims → dist/shims}/web.mjs +0 -0
- /package/{shims → dist/shims}/web.mjs.map +0 -0
- /package/{src → dist/src}/tsconfig.json +0 -0
- /package/{streaming.d.ts → dist/streaming.d.ts} +0 -0
- /package/{streaming.d.ts.map → dist/streaming.d.ts.map} +0 -0
- /package/{streaming.js → dist/streaming.js} +0 -0
- /package/{streaming.js.map → dist/streaming.js.map} +0 -0
- /package/{streaming.mjs → dist/streaming.mjs} +0 -0
- /package/{streaming.mjs.map → dist/streaming.mjs.map} +0 -0
- /package/{uploads.d.ts → dist/uploads.d.ts} +0 -0
- /package/{uploads.d.ts.map → dist/uploads.d.ts.map} +0 -0
- /package/{uploads.js → dist/uploads.js} +0 -0
- /package/{uploads.js.map → dist/uploads.js.map} +0 -0
- /package/{uploads.mjs → dist/uploads.mjs} +0 -0
- /package/{uploads.mjs.map → dist/uploads.mjs.map} +0 -0
|
@@ -0,0 +1,512 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.5.0-alpha.4 (2026-04-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.5.0-alpha.3...v0.5.0-alpha.4](https://github.com/ogx-ai/ogx-client-typescript/compare/v0.5.0-alpha.3...v0.5.0-alpha.4)
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* remove nullable annotations from Responses fields to match OpenAI spec
|
|
10
|
+
* remove deprecated Eval API and related APIs
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add conversation compaction support to Responses API ([5b4425c](https://github.com/ogx-ai/ogx-client-typescript/commit/5b4425c7e2ed4615adcbe73dfe7a2fae77575090))
|
|
15
|
+
* add spec-compliant streaming error event for Responses API ([6b4d9b5](https://github.com/ogx-ai/ogx-client-typescript/commit/6b4d9b5e69e115ab7aff029c514a59cc8419aed9))
|
|
16
|
+
* **api:** api update ([c2a3765](https://github.com/ogx-ai/ogx-client-typescript/commit/c2a37659d8f9f19048aa98beb678e7c2d8df38bc))
|
|
17
|
+
* support setting headers via env ([39ef512](https://github.com/ogx-ai/ogx-client-typescript/commit/39ef512304569dd163d62e6ab7e7a2884a08a044))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **docs:** add missing sidebar icons and fix 404s for API tags ([34c6790](https://github.com/ogx-ai/ogx-client-typescript/commit/34c6790895c4f834210b6b6d54b46c93191f3e42))
|
|
23
|
+
* **docs:** remove dead API links and add missing OpenAPI tags ([1095866](https://github.com/ogx-ai/ogx-client-typescript/commit/1095866dd2cdf2a06c405da2758682999378ead0))
|
|
24
|
+
* improve OpenAI API conformance by keeping type object on schemas ([84bd66a](https://github.com/ogx-ai/ogx-client-typescript/commit/84bd66a3aaeb97e37e52bb14ae576303b60740ce))
|
|
25
|
+
* improve OpenAI API conformance for Models and Files ([c9eb2ce](https://github.com/ogx-ai/ogx-client-typescript/commit/c9eb2ce77e8e1aee71e0e682e178acb6946c31b2))
|
|
26
|
+
* improve Vector Stores OpenAI API conformance ([18e5038](https://github.com/ogx-ai/ogx-client-typescript/commit/18e5038813421d1917318fb236f4868354c9c299))
|
|
27
|
+
* remove nullable annotations from Responses fields to match OpenAI spec ([547134c](https://github.com/ogx-ai/ogx-client-typescript/commit/547134cc3cef957593db7d7620aeddc6599762be))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Chores
|
|
31
|
+
|
|
32
|
+
* **internal:** codegen related update ([5df4304](https://github.com/ogx-ai/ogx-client-typescript/commit/5df4304d8fa9f7b3e4be41ecfa646a4063bc3abc))
|
|
33
|
+
* **internal:** more robust bootstrap script ([3c1fa52](https://github.com/ogx-ai/ogx-client-typescript/commit/3c1fa5228f6ac6d333e3877210455fe716931e56))
|
|
34
|
+
* **tests:** bump steady to v0.22.1 ([d57d443](https://github.com/ogx-ai/ogx-client-typescript/commit/d57d44302ccefd3a75608c7526df044db82ddf4a))
|
|
35
|
+
* update SDK settings ([f20b30d](https://github.com/ogx-ai/ogx-client-typescript/commit/f20b30d63cbbf6c2c011cee3872becdc9442625e))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Refactors
|
|
39
|
+
|
|
40
|
+
* remove deprecated Eval API and related APIs ([bc494d4](https://github.com/ogx-ai/ogx-client-typescript/commit/bc494d4492113bb595cabc25fe0177d6c247a49d))
|
|
41
|
+
|
|
42
|
+
## 0.5.0-alpha.3 (2026-04-02)
|
|
43
|
+
|
|
44
|
+
Full Changelog: [v0.5.0-alpha.2...v0.5.0-alpha.3](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.5.0-alpha.2...v0.5.0-alpha.3)
|
|
45
|
+
|
|
46
|
+
### ⚠ BREAKING CHANGES
|
|
47
|
+
|
|
48
|
+
* eliminate GET /chat/completions/{completion_id} conformance issues
|
|
49
|
+
* rename agents API to responses API
|
|
50
|
+
* eliminate /files/{file_id} GET differences
|
|
51
|
+
* improve consistency of post-training API endpoints
|
|
52
|
+
|
|
53
|
+
### Features
|
|
54
|
+
|
|
55
|
+
* accept list content blocks in Responses API function_call_output ([9a2e825](https://github.com/llamastack/llama-stack-client-typescript/commit/9a2e82551698ce4b0f127e9b466504568feade84))
|
|
56
|
+
* Add prompt_cache_key parameter support ([e6399ef](https://github.com/llamastack/llama-stack-client-typescript/commit/e6399ef9e8b34b6cf3238c4c8f8b7d0134a8788e))
|
|
57
|
+
* add reasoning as valid conversation item ([25df02e](https://github.com/llamastack/llama-stack-client-typescript/commit/25df02e8fdc4e98af98c2271b5aeee8fcdedf865))
|
|
58
|
+
* add reasoning output types to OpenAI Responses API spec ([652e5db](https://github.com/llamastack/llama-stack-client-typescript/commit/652e5db44b81c83830ca1d39c05ea0c7b738415c))
|
|
59
|
+
* add skip_model_availability to openai_mixin for remote models ([51a4f50](https://github.com/llamastack/llama-stack-client-typescript/commit/51a4f502e896045621f4aac9e75c19418490801e))
|
|
60
|
+
* Add stream_options parameter support ([992f337](https://github.com/llamastack/llama-stack-client-typescript/commit/992f337ad0a9f0d956ab0bbbcbdbc1b3367ee53c))
|
|
61
|
+
* add support for 'frequency_penalty' param to Responses API ([c0a5753](https://github.com/llamastack/llama-stack-client-typescript/commit/c0a5753ffb14bba9b9b8b61ab6045087a30f8576))
|
|
62
|
+
* add support for 'presence_penalty' param to Responses API ([8a1b472](https://github.com/llamastack/llama-stack-client-typescript/commit/8a1b47258a72741c9a32724af25033e2545b7ba5))
|
|
63
|
+
* add support for /responses background parameter ([c7e9581](https://github.com/llamastack/llama-stack-client-typescript/commit/c7e9581d7df28f5c97dd9ecc903c942f33972649))
|
|
64
|
+
* Add top_logprobs parameter support ([1ff427f](https://github.com/llamastack/llama-stack-client-typescript/commit/1ff427f5265874e0d90fe1346154f71b21d20d9e))
|
|
65
|
+
* add top_p parameter support to responses API ([76bacd4](https://github.com/llamastack/llama-stack-client-typescript/commit/76bacd49f160ba9ab0740269ad7116340f265e58))
|
|
66
|
+
* Add truncation parameter support ([3119d6b](https://github.com/llamastack/llama-stack-client-typescript/commit/3119d6bb8a1d38d6fa1958daeed0fb5dbb12b1e1))
|
|
67
|
+
* **api:** support extra_body pass-through in responses API ([d707494](https://github.com/llamastack/llama-stack-client-typescript/commit/d70749437992017bd331c17f02e09cb093205900))
|
|
68
|
+
* eliminate /files/{file_id} GET differences ([d5595b1](https://github.com/llamastack/llama-stack-client-typescript/commit/d5595b10679b717e17b1c79b1a3a17049de2dade))
|
|
69
|
+
* eliminate GET /chat/completions/{completion_id} conformance issues ([1536e1a](https://github.com/llamastack/llama-stack-client-typescript/commit/1536e1a3e089cfe08582f044394f94c97dc7d60b))
|
|
70
|
+
* improve consistency of post-training API endpoints ([93376fc](https://github.com/llamastack/llama-stack-client-typescript/commit/93376fcbe864d4e8becd957301e6df15b3d803f8))
|
|
71
|
+
* **inference:** bidirectional reasoning token passthrough for chat completions ([cd3c600](https://github.com/llamastack/llama-stack-client-typescript/commit/cd3c6000e16cd52a830b8fa48fe4781989ad7b9a))
|
|
72
|
+
* **responses:** add cancel endpoint for background responses ([df4292b](https://github.com/llamastack/llama-stack-client-typescript/commit/df4292b354950cc83db605bc0d5334c5a80fe5a1))
|
|
73
|
+
* **vector_io:** Implement Contextual Retrieval for improved RAG search quality ([abf9c27](https://github.com/llamastack/llama-stack-client-typescript/commit/abf9c27dcee824cd87f5b1889c456d99a7a94fb9))
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Bug Fixes
|
|
77
|
+
|
|
78
|
+
* align chat completion usage schema with OpenAI spec ([6fa6eb8](https://github.com/llamastack/llama-stack-client-typescript/commit/6fa6eb87d96902586d4feb82747a5cdf99622045))
|
|
79
|
+
* **client:** preserve URL params already embedded in path ([2bd57de](https://github.com/llamastack/llama-stack-client-typescript/commit/2bd57deec573fa1ef389d8c798e2b9588f4ddbbd))
|
|
80
|
+
* **docs/contributing:** correct pnpm link command ([8aa7f85](https://github.com/llamastack/llama-stack-client-typescript/commit/8aa7f856abb9ee612cc6ea97e30984b29620fd1b))
|
|
81
|
+
* fix request delays for retrying to be more respectful of high requested delays ([0b0080a](https://github.com/llamastack/llama-stack-client-typescript/commit/0b0080af337cafe4e69c446756a227270c947c2b))
|
|
82
|
+
* **inference:** improve chat completions OpenAI conformance ([eb6414c](https://github.com/llamastack/llama-stack-client-typescript/commit/eb6414c133c7f8e67e1a78e44da0322450d13ed3))
|
|
83
|
+
* **inference:** use flat response message model for chat/completions ([d7033cd](https://github.com/llamastack/llama-stack-client-typescript/commit/d7033cd2af32a823514135971b3775037992393c))
|
|
84
|
+
* remove duplicate dataset_id parameter in append-rows endpoint ([fe105ab](https://github.com/llamastack/llama-stack-client-typescript/commit/fe105ab03ee5ef9c3eb2046c2e225bff08472f45))
|
|
85
|
+
* **responses:** achieve full OpenResponses conformance — 6/6 tests passing ([6537552](https://github.com/llamastack/llama-stack-client-typescript/commit/653755208f5de83bf9a8cf879c3f77abf5ba88d3))
|
|
86
|
+
* **stainless:** handle [DONE] SSE terminator in streaming responses ([3f9d067](https://github.com/llamastack/llama-stack-client-typescript/commit/3f9d06785dcb9b9e8279d0e54fdc0d4f0e1afd91))
|
|
87
|
+
* **vector_io:** align Protocol signatures with request models ([11a1a20](https://github.com/llamastack/llama-stack-client-typescript/commit/11a1a20e82bae62f8210cb26091d3df8bf648f15))
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Chores
|
|
91
|
+
|
|
92
|
+
* **api:** minor updates ([1286b39](https://github.com/llamastack/llama-stack-client-typescript/commit/1286b396a69ae48b41ad125405f005264339116d))
|
|
93
|
+
* **ci:** skip lint on metadata-only changes ([7a0e6aa](https://github.com/llamastack/llama-stack-client-typescript/commit/7a0e6aa16e489da90279968b3db410a2808d7897))
|
|
94
|
+
* **ci:** skip uploading artifacts on stainless-internal branches ([b6ec8ca](https://github.com/llamastack/llama-stack-client-typescript/commit/b6ec8caf1dcd5db7088a0762c7e5276b05e824e3))
|
|
95
|
+
* **docs:** add missing descriptions ([a1ed726](https://github.com/llamastack/llama-stack-client-typescript/commit/a1ed7261f3858be53a768817bf58d8f15ce412a6))
|
|
96
|
+
* **internal:** avoid type checking errors with ts-reset ([2cffe20](https://github.com/llamastack/llama-stack-client-typescript/commit/2cffe2040a77c3310db5d1803fc3800b4dd72f28))
|
|
97
|
+
* **internal:** codegen related update ([4feb3b7](https://github.com/llamastack/llama-stack-client-typescript/commit/4feb3b71dce9088968439ab554c8ee6998114d2f))
|
|
98
|
+
* **internal:** move stringifyQuery implementation to internal function ([03a5b05](https://github.com/llamastack/llama-stack-client-typescript/commit/03a5b052d5406755515edb07e04e8b4fd7750234))
|
|
99
|
+
* **internal:** tweak CI branches ([cb4c926](https://github.com/llamastack/llama-stack-client-typescript/commit/cb4c926869316cfbea09e9b1414456b584761d47))
|
|
100
|
+
* **internal:** update gitignore ([651b312](https://github.com/llamastack/llama-stack-client-typescript/commit/651b31248f2dea6a0593b65aa2121087857a7c25))
|
|
101
|
+
* **internal:** update multipart form array serialization ([a2245ee](https://github.com/llamastack/llama-stack-client-typescript/commit/a2245ee1c098f51e6cac578b29b1c26ec2757ebb))
|
|
102
|
+
* **test:** do not count install time for mock server timeout ([bfb35fe](https://github.com/llamastack/llama-stack-client-typescript/commit/bfb35fe36446caea4edc9dddadc15b345e61f855))
|
|
103
|
+
* **tests:** bump steady to v0.19.4 ([877e07d](https://github.com/llamastack/llama-stack-client-typescript/commit/877e07d2fb70b22761c0f16137dfb04d6003997e))
|
|
104
|
+
* **tests:** bump steady to v0.19.5 ([d05e2db](https://github.com/llamastack/llama-stack-client-typescript/commit/d05e2db034a1dbd0c4c4c6ceaac4c410b17fa5a2))
|
|
105
|
+
* **tests:** bump steady to v0.19.6 ([acf26c0](https://github.com/llamastack/llama-stack-client-typescript/commit/acf26c06bc0cc244bca082b1060d7477f1fa27e8))
|
|
106
|
+
* **tests:** bump steady to v0.19.7 ([216ce02](https://github.com/llamastack/llama-stack-client-typescript/commit/216ce02d4b4a76b908389e848eaddad5e6124ceb))
|
|
107
|
+
* **tests:** bump steady to v0.20.1 ([502633c](https://github.com/llamastack/llama-stack-client-typescript/commit/502633c9814fa7d72b60717f0270438c2af14a28))
|
|
108
|
+
* **tests:** bump steady to v0.20.2 ([fa7a238](https://github.com/llamastack/llama-stack-client-typescript/commit/fa7a2389c99ff553cae2d126e8c6855f7e0dee02))
|
|
109
|
+
* update mock server docs ([0d438e8](https://github.com/llamastack/llama-stack-client-typescript/commit/0d438e81af56cdc6ec91ac6c3286dedc4dc9190f))
|
|
110
|
+
* update placeholder string ([62e1d34](https://github.com/llamastack/llama-stack-client-typescript/commit/62e1d34d77f46047eab860ba537164de06c74824))
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Refactors
|
|
114
|
+
|
|
115
|
+
* remove deprecated register/unregister model endpoints ([1247b1d](https://github.com/llamastack/llama-stack-client-typescript/commit/1247b1dfc7d9541c8e90dffa79c05652ccb59f75))
|
|
116
|
+
* remove fine_tuning API ([81f12ca](https://github.com/llamastack/llama-stack-client-typescript/commit/81f12ca417cdbc00bcb37148c37a93af697b5439))
|
|
117
|
+
* remove tool_groups from public API and auto-register from provider specs ([07f07b3](https://github.com/llamastack/llama-stack-client-typescript/commit/07f07b3ad78ed8be421c44d3c189c795b39fba93))
|
|
118
|
+
* rename agents API to responses API ([0d16ccc](https://github.com/llamastack/llama-stack-client-typescript/commit/0d16cccce2e7b4c2e461186cc4cc2a52e7bac4ce))
|
|
119
|
+
* rename rag-runtime provider to file-search ([5e73282](https://github.com/llamastack/llama-stack-client-typescript/commit/5e73282c2cee739eac97fca8dc6d8cda99d5b2ce))
|
|
120
|
+
* **tests:** switch from prism to steady ([2e25672](https://github.com/llamastack/llama-stack-client-typescript/commit/2e25672fe9d57614833b0dd9f2254a6ba12ce699))
|
|
121
|
+
|
|
122
|
+
## 0.5.0-alpha.2 (2026-02-05)
|
|
123
|
+
|
|
124
|
+
Full Changelog: [v0.4.0-alpha.7...v0.5.0-alpha.2](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.7...v0.5.0-alpha.2)
|
|
125
|
+
|
|
126
|
+
### Features
|
|
127
|
+
|
|
128
|
+
* add support for tool_choice to repsponses api ([8170d7f](https://github.com/llamastack/llama-stack-client-typescript/commit/8170d7f453cdc6263fe19ddf8e6cddc097b61780))
|
|
129
|
+
* Adds support for the `safety_identifier` parameter ([db2ebc6](https://github.com/llamastack/llama-stack-client-typescript/commit/db2ebc6f214bebe06e329bbfa6509f93dbc47b69))
|
|
130
|
+
* **api:** add readonly connectors API ([c810c19](https://github.com/llamastack/llama-stack-client-typescript/commit/c810c19d824604b34dab48d453bf1f19ac1ff66d))
|
|
131
|
+
* convert Benchmarks API to use FastAPI router ([bcc19bb](https://github.com/llamastack/llama-stack-client-typescript/commit/bcc19bb3640fffce18a128c042f11b695c8f7a6d))
|
|
132
|
+
* convert Datasets API to use FastAPI router ([a52b7ee](https://github.com/llamastack/llama-stack-client-typescript/commit/a52b7ee0bd64a843134b2354e95502da2fe55f66))
|
|
133
|
+
* Implement include parameter specifically for adding logprobs in the output message ([01f0ba8](https://github.com/llamastack/llama-stack-client-typescript/commit/01f0ba8970e6c1a729dd872cf228376fddd5f3fe))
|
|
134
|
+
* introduce /admin API for stack administration and operations ([2c9e2ab](https://github.com/llamastack/llama-stack-client-typescript/commit/2c9e2ab11a42bb2192370880781e2faee633c17c))
|
|
135
|
+
* migrate Inspect API to FastAPI router ([79f8d87](https://github.com/llamastack/llama-stack-client-typescript/commit/79f8d87b64a243c782c5a9eb5b62d31378781f36))
|
|
136
|
+
* migrate Providers API to FastAPI router pattern ([22f7cf6](https://github.com/llamastack/llama-stack-client-typescript/commit/22f7cf60f463db6091bf213a630ac48bb1f12e49))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Bug Fixes
|
|
140
|
+
|
|
141
|
+
* **mcp:** correct code tool API endpoint ([6006307](https://github.com/llamastack/llama-stack-client-typescript/commit/60063077b65f31a31dabf254dbcfae50909cd692))
|
|
142
|
+
* **mcp:** return correct lines on typescript errors ([368f4b5](https://github.com/llamastack/llama-stack-client-typescript/commit/368f4b50eb87213ab27f43a161df688d3cba4f62))
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Chores
|
|
146
|
+
|
|
147
|
+
* break long lines in snippets into multiline ([a3f9a49](https://github.com/llamastack/llama-stack-client-typescript/commit/a3f9a49ec9ae6ce575a355888d0332643b314fff))
|
|
148
|
+
* **ci:** upgrade `actions/github-script` ([8d32768](https://github.com/llamastack/llama-stack-client-typescript/commit/8d327684ea36362d0b06b297d8a7355353800298))
|
|
149
|
+
* clarify use of yarn for development and npm/yarn/pnpm for users ([#51](https://github.com/llamastack/llama-stack-client-typescript/issues/51)) ([b413eed](https://github.com/llamastack/llama-stack-client-typescript/commit/b413eedc57a6666df5aa98af4c8726a468cb77ec))
|
|
150
|
+
* **internal:** codegen related update ([c12b19b](https://github.com/llamastack/llama-stack-client-typescript/commit/c12b19b37e47e9982a99ea1f4ba7d0a92ff61f1f))
|
|
151
|
+
* **internal:** codegen related update ([db8b76f](https://github.com/llamastack/llama-stack-client-typescript/commit/db8b76f2ca7761bf0b71fcf548d24e93b83014e0))
|
|
152
|
+
* **internal:** codegen related update ([9d4ee0f](https://github.com/llamastack/llama-stack-client-typescript/commit/9d4ee0f21db979f28ac2008f37b02a70e72094ff))
|
|
153
|
+
* **internal:** codegen related update ([b5ea21d](https://github.com/llamastack/llama-stack-client-typescript/commit/b5ea21d0dcf0a71a49420efdf721f21254b9a0ce))
|
|
154
|
+
* **internal:** codegen related update ([d199aff](https://github.com/llamastack/llama-stack-client-typescript/commit/d199aff3d638854e58ae5575979d2c7f57eebc10))
|
|
155
|
+
* **internal:** update `actions/checkout` version ([fe86770](https://github.com/llamastack/llama-stack-client-typescript/commit/fe867703d0446b015c6c59a62ae9e9b29161aca3))
|
|
156
|
+
* **internal:** upgrade babel, qs, js-yaml ([d318482](https://github.com/llamastack/llama-stack-client-typescript/commit/d318482504fd85a956d3a382ba8113fedfb8416c))
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Documentation
|
|
160
|
+
|
|
161
|
+
* add more examples ([cc58d0d](https://github.com/llamastack/llama-stack-client-typescript/commit/cc58d0d59eda97e5fbad6b6daea0272dcbb189cb))
|
|
162
|
+
|
|
163
|
+
## 0.4.0-alpha.7 (2025-12-03)
|
|
164
|
+
|
|
165
|
+
Full Changelog: [v0.4.0-alpha.6...v0.4.0-alpha.7](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.6...v0.4.0-alpha.7)
|
|
166
|
+
|
|
167
|
+
### ⚠ BREAKING CHANGES
|
|
168
|
+
|
|
169
|
+
* replace output_text property with getResponseOutputText helper ([#48](https://github.com/llamastack/llama-stack-client-typescript/issues/48))
|
|
170
|
+
|
|
171
|
+
### Features
|
|
172
|
+
|
|
173
|
+
* add `output_text` property on Response object ([#42](https://github.com/llamastack/llama-stack-client-typescript/issues/42)) ([bced728](https://github.com/llamastack/llama-stack-client-typescript/commit/bced72805f3314f41d03f5d60502204a4e41ee07))
|
|
174
|
+
* add integration tests CI workflow ([#49](https://github.com/llamastack/llama-stack-client-typescript/issues/49)) ([5675ef1](https://github.com/llamastack/llama-stack-client-typescript/commit/5675ef11021ac703ce4fc967544c812030d05361))
|
|
175
|
+
* Add metadata field to request and response ([fdf65b2](https://github.com/llamastack/llama-stack-client-typescript/commit/fdf65b2cd70b350cf3f821ca01e3bf6190440565))
|
|
176
|
+
* **api:** deprecate `toolgroup` and `tool_runtime` apis ([3f75ac5](https://github.com/llamastack/llama-stack-client-typescript/commit/3f75ac506692b7706c978f11b5d4d6e012fd7357))
|
|
177
|
+
* Implement FastAPI router system ([ea26c3e](https://github.com/llamastack/llama-stack-client-typescript/commit/ea26c3e2a340985f2dacf6df86070dbf71d93749))
|
|
178
|
+
* replace output_text property with getResponseOutputText helper ([#48](https://github.com/llamastack/llama-stack-client-typescript/issues/48)) ([53e799e](https://github.com/llamastack/llama-stack-client-typescript/commit/53e799edd1da5fa1566610f83a3f4e5722e46d2c))
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Bug Fixes
|
|
182
|
+
|
|
183
|
+
* add test for the exported symbol ([e78b187](https://github.com/llamastack/llama-stack-client-typescript/commit/e78b18756b539acf37a37402c3afb44f97460545))
|
|
184
|
+
* **client:** fix issue with duplicate definitions in Go ([48d4f16](https://github.com/llamastack/llama-stack-client-typescript/commit/48d4f166d3ba438a2b4a9fec3e98d958ea8f035b))
|
|
185
|
+
* Pydantic validation error with list-type metadata in vector search ([#3797](https://github.com/llamastack/llama-stack-client-typescript/issues/3797)) ([e1c40d2](https://github.com/llamastack/llama-stack-client-typescript/commit/e1c40d2a3d6a3abb52f38108f231a9e6bec074ce))
|
|
186
|
+
|
|
187
|
+
## 0.4.0-alpha.6 (2025-11-18)
|
|
188
|
+
|
|
189
|
+
Full Changelog: [v0.4.0-alpha.5...v0.4.0-alpha.6](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.5...v0.4.0-alpha.6)
|
|
190
|
+
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
* Wire through parallel_tool_calls to Responses API ([3b91f14](https://github.com/llamastack/llama-stack-client-typescript/commit/3b91f14e0d40ecffd5f7b0bd55600995f934c616))
|
|
194
|
+
|
|
195
|
+
## 0.4.0-alpha.5 (2025-11-17)
|
|
196
|
+
|
|
197
|
+
Full Changelog: [v0.4.0-alpha.4...v0.4.0-alpha.5](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.4...v0.4.0-alpha.5)
|
|
198
|
+
|
|
199
|
+
### Bug Fixes
|
|
200
|
+
|
|
201
|
+
* **openapi:** restore embedded request wrappers ([b5604d7](https://github.com/llamastack/llama-stack-client-typescript/commit/b5604d767ace04d82c60c600401d72fa497e68b0))
|
|
202
|
+
|
|
203
|
+
## 0.4.0-alpha.4 (2025-11-14)
|
|
204
|
+
|
|
205
|
+
Full Changelog: [v0.4.0-alpha.3...v0.4.0-alpha.4](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.3...v0.4.0-alpha.4)
|
|
206
|
+
|
|
207
|
+
### Bug Fixes
|
|
208
|
+
|
|
209
|
+
* **ci:** release doctor workflow had a typo ([c2417e3](https://github.com/llamastack/llama-stack-client-typescript/commit/c2417e399a0c8f14dc3f29c2682d7889d6149069))
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Chores
|
|
213
|
+
|
|
214
|
+
* use Pydantic to generate OpenAPI schema ([264cd8d](https://github.com/llamastack/llama-stack-client-typescript/commit/264cd8dd9dbba40fb55ef07462c664eb1de7f526))
|
|
215
|
+
|
|
216
|
+
## 0.4.0-alpha.3 (2025-11-14)
|
|
217
|
+
|
|
218
|
+
Full Changelog: [v0.4.0-alpha.2...v0.4.0-alpha.3](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.2...v0.4.0-alpha.3)
|
|
219
|
+
|
|
220
|
+
### Bug Fixes
|
|
221
|
+
|
|
222
|
+
* MCP authorization parameter implementation ([a5dd454](https://github.com/llamastack/llama-stack-client-typescript/commit/a5dd454c5f2cb64532e642c415ef40eb1001dcd8))
|
|
223
|
+
|
|
224
|
+
## 0.4.0-alpha.2 (2025-11-13)
|
|
225
|
+
|
|
226
|
+
Full Changelog: [v0.4.0-alpha.1...v0.4.0-alpha.2](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.4.0-alpha.1...v0.4.0-alpha.2)
|
|
227
|
+
|
|
228
|
+
### Features
|
|
229
|
+
|
|
230
|
+
* add new API filter for all non-deprecated APIs ([b6aeeaf](https://github.com/llamastack/llama-stack-client-typescript/commit/b6aeeaf8de2ec76928f2b52b027b563924cae7af))
|
|
231
|
+
* Adding option to return embeddings and metadata from `/vector_stores/*/files/*/content` and UI updates ([f599d5e](https://github.com/llamastack/llama-stack-client-typescript/commit/f599d5e0cb24af85afaf698ab132e35980094b30))
|
|
232
|
+
* **api:** point models.list() to /v1/openai/v1/models ([bb35776](https://github.com/llamastack/llama-stack-client-typescript/commit/bb35776ec613b3045cf3b3f62e5361d9403fa2a8))
|
|
233
|
+
* **api:** remove agents types ([69aff21](https://github.com/llamastack/llama-stack-client-typescript/commit/69aff218b3c3765a1a6beab4ade48a7096a9082b))
|
|
234
|
+
* **api:** remove openai/v1 endpoints ([96b206c](https://github.com/llamastack/llama-stack-client-typescript/commit/96b206cd531391fe3d0323a276eb342b70a568de))
|
|
235
|
+
* Implement the 'max_tool_calls' parameter for the Responses API ([a9ec6fb](https://github.com/llamastack/llama-stack-client-typescript/commit/a9ec6fb8fea3b839f30a03d2fb61efbfe4c6b007))
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
### Bug Fixes
|
|
239
|
+
|
|
240
|
+
* **api:** ensure openapi spec has deprecated routes ([8cd1f46](https://github.com/llamastack/llama-stack-client-typescript/commit/8cd1f4632c395241bddefd19a23abd52eefe2ca3))
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
### Chores
|
|
244
|
+
|
|
245
|
+
* **stainless:** add config for file header ([1bc1a46](https://github.com/llamastack/llama-stack-client-typescript/commit/1bc1a460f884257ece4da5d12a3a7a0847bf725a))
|
|
246
|
+
* **stainless:** add config for file header ([61a0e70](https://github.com/llamastack/llama-stack-client-typescript/commit/61a0e705c79716318f88d5f4bec385d20f6a5e3e))
|
|
247
|
+
|
|
248
|
+
## 0.4.0-alpha.1 (2025-10-31)
|
|
249
|
+
|
|
250
|
+
Full Changelog: [v0.2.23-alpha.1...v0.4.0-alpha.1](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.2.23-alpha.1...v0.4.0-alpha.1)
|
|
251
|
+
|
|
252
|
+
### ⚠ BREAKING CHANGES
|
|
253
|
+
|
|
254
|
+
* **api:** /v1/inspect only lists v1 apis by default
|
|
255
|
+
* **api:** /v1/inspect only lists v1 apis by default
|
|
256
|
+
* **api:** use input_schema instead of parameters for tools
|
|
257
|
+
* **api:** fixes to remove deprecated inference resources
|
|
258
|
+
|
|
259
|
+
### Features
|
|
260
|
+
|
|
261
|
+
* **api:** Adding prompts API to stainless config ([5ab8d74](https://github.com/llamastack/llama-stack-client-typescript/commit/5ab8d7423f6a9c26453b36c9daee99d343993d4b))
|
|
262
|
+
* **api:** expires_after changes for /files ([a0b0fb7](https://github.com/llamastack/llama-stack-client-typescript/commit/a0b0fb7aa74668f3f6996c178f9654723b8b0f22))
|
|
263
|
+
* **api:** fix file batches SDK to list_files ([25a0f10](https://github.com/llamastack/llama-stack-client-typescript/commit/25a0f10cffa7de7f1457d65c97259911bc70ab0a))
|
|
264
|
+
* **api:** fixes to remove deprecated inference resources ([367d775](https://github.com/llamastack/llama-stack-client-typescript/commit/367d775c3d5a2fd85bf138d2b175e91b7c185913))
|
|
265
|
+
* **api:** fixes to URLs ([e4f7840](https://github.com/llamastack/llama-stack-client-typescript/commit/e4f78407f74f3ba7597de355c314e1932dd94761))
|
|
266
|
+
* **api:** manual updates ([7d2e375](https://github.com/llamastack/llama-stack-client-typescript/commit/7d2e375bde7bd04ae58cc49fcd5ab7b134b25640))
|
|
267
|
+
* **api:** manual updates ([0302d54](https://github.com/llamastack/llama-stack-client-typescript/commit/0302d54398d87127ab0e9221a8a92760123d235b))
|
|
268
|
+
* **api:** manual updates ([98a596f](https://github.com/llamastack/llama-stack-client-typescript/commit/98a596f677fe2790e4b4765362aa19b6cff8b97e))
|
|
269
|
+
* **api:** manual updates ([c6fb0b6](https://github.com/llamastack/llama-stack-client-typescript/commit/c6fb0b67d8f2e641c13836a17400e51df0b029f1))
|
|
270
|
+
* **api:** manual updates??! ([4dda064](https://github.com/llamastack/llama-stack-client-typescript/commit/4dda06489f003860e138f396c253b40de01103b6))
|
|
271
|
+
* **api:** move datasets to beta, vector_db -> vector_store ([f32c0be](https://github.com/llamastack/llama-stack-client-typescript/commit/f32c0becb1ec0d66129b7fcaa06de3323ee703da))
|
|
272
|
+
* **api:** move post_training and eval under alpha namespace ([aec1d5f](https://github.com/llamastack/llama-stack-client-typescript/commit/aec1d5ff198473ba736bf543ad00c6626cab9b81))
|
|
273
|
+
* **api:** moving { rerank, agents } to `client.alpha.` ([793e069](https://github.com/llamastack/llama-stack-client-typescript/commit/793e0694d75c2af4535bf991d5858cd1f21300b4))
|
|
274
|
+
* **api:** removing openai/v1 ([b5432de](https://github.com/llamastack/llama-stack-client-typescript/commit/b5432de2ad56ff0d2fd5a5b8e1755b5237616b60))
|
|
275
|
+
* **api:** SDKs for vector store file batches ([b0676c8](https://github.com/llamastack/llama-stack-client-typescript/commit/b0676c837bbd835276fea3fe12f435afdbb75ef7))
|
|
276
|
+
* **api:** SDKs for vector store file batches apis ([88731bf](https://github.com/llamastack/llama-stack-client-typescript/commit/88731bfecd6f548ae79cbe2a1125620e488c42a3))
|
|
277
|
+
* **api:** several updates including Conversations, Responses changes, etc. ([e0728d5](https://github.com/llamastack/llama-stack-client-typescript/commit/e0728d5dd59be8723d9f967d6164351eb05528d1))
|
|
278
|
+
* **api:** sync ([7d85013](https://github.com/llamastack/llama-stack-client-typescript/commit/7d850139d1327a215312a82c98b3428ebc7e5f68))
|
|
279
|
+
* **api:** tool api (input_schema, etc.) changes ([06f2bca](https://github.com/llamastack/llama-stack-client-typescript/commit/06f2bcaf0df2e5d462cbe2d9ef3704ab0cfe9248))
|
|
280
|
+
* **api:** updates to vector_store, etc. ([19535c2](https://github.com/llamastack/llama-stack-client-typescript/commit/19535c27147bf6f6861b807d9eeee471b5625148))
|
|
281
|
+
* **api:** updating post /v1/files to have correct multipart/form-data ([f1cf9d6](https://github.com/llamastack/llama-stack-client-typescript/commit/f1cf9d68b6b2569dfb5ea3e2d2c33eff1a832e47))
|
|
282
|
+
* **api:** use input_schema instead of parameters for tools ([8910a12](https://github.com/llamastack/llama-stack-client-typescript/commit/8910a121146aeddcb8f400101e6a2232245097e0))
|
|
283
|
+
* **api:** vector_db_id -> vector_store_id ([079d89d](https://github.com/llamastack/llama-stack-client-typescript/commit/079d89d6522cb4f2eed5e5a09962d94ad800e883))
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Bug Fixes
|
|
287
|
+
|
|
288
|
+
* **api:** another fix to capture correct responses.create() params ([6acae91](https://github.com/llamastack/llama-stack-client-typescript/commit/6acae910db289080e8f52864f1bdf6d7951d1c3b))
|
|
289
|
+
* **api:** fix the ToolDefParam updates ([5cee3d6](https://github.com/llamastack/llama-stack-client-typescript/commit/5cee3d69650a4c827e12fc046c1d2ec3b2fa9126))
|
|
290
|
+
* **client:** incorrect offset pagination check ([257285f](https://github.com/llamastack/llama-stack-client-typescript/commit/257285f33bb989c9040580dd24251d05f9657bb0))
|
|
291
|
+
* fix stream event model reference ([a71b421](https://github.com/llamastack/llama-stack-client-typescript/commit/a71b421152a609e49e76d01c6e4dd46eb3dbfae0))
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
### Chores
|
|
295
|
+
|
|
296
|
+
* **api:** /v1/inspect only lists v1 apis by default ([ae3dc95](https://github.com/llamastack/llama-stack-client-typescript/commit/ae3dc95964c908d219b23d7166780eaab6003ef5))
|
|
297
|
+
* **api:** /v1/inspect only lists v1 apis by default ([e30f51c](https://github.com/llamastack/llama-stack-client-typescript/commit/e30f51c704c39129092255c040bbf5ad90ed0b07))
|
|
298
|
+
* extract some types in mcp docs ([dcc7bb8](https://github.com/llamastack/llama-stack-client-typescript/commit/dcc7bb8b4d940982c2e9c6d1a541636e99fdc5ff))
|
|
299
|
+
* fix readme example ([402f930](https://github.com/llamastack/llama-stack-client-typescript/commit/402f9301d033bb230c9714104fbfa554f3f7cd8f))
|
|
300
|
+
* fix readme examples ([4d5517c](https://github.com/llamastack/llama-stack-client-typescript/commit/4d5517c2b9af2eb6994f5e4b2c033c95d268fb5c))
|
|
301
|
+
* **internal:** codegen related update ([252e0a2](https://github.com/llamastack/llama-stack-client-typescript/commit/252e0a2a38bd8aedab91b401c440a9b10c056cec))
|
|
302
|
+
* **internal:** codegen related update ([34da720](https://github.com/llamastack/llama-stack-client-typescript/commit/34da720c34c35dafb38775243d28dfbdce2497db))
|
|
303
|
+
* **internal:** fix incremental formatting in some cases ([c5c8292](https://github.com/llamastack/llama-stack-client-typescript/commit/c5c8292b631c678efff5498bbab9f5a43bee50b6))
|
|
304
|
+
* **internal:** use npm pack for build uploads ([a246793](https://github.com/llamastack/llama-stack-client-typescript/commit/a24679300cff93fea8ad4bc85e549ecc88198d58))
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Documentation
|
|
308
|
+
|
|
309
|
+
* update examples ([17b9eb3](https://github.com/llamastack/llama-stack-client-typescript/commit/17b9eb3c40957b63d2a71f7fc21944abcc720d80))
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Build System
|
|
313
|
+
|
|
314
|
+
* Bump version to 0.2.23 ([16e05ed](https://github.com/llamastack/llama-stack-client-typescript/commit/16e05ed9798233375e19098992632d223c3f5d8d))
|
|
315
|
+
|
|
316
|
+
## 0.2.23-alpha.1 (2025-09-26)
|
|
317
|
+
|
|
318
|
+
Full Changelog: [v0.2.19-alpha.1...v0.2.23-alpha.1](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.2.19-alpha.1...v0.2.23-alpha.1)
|
|
319
|
+
|
|
320
|
+
### Features
|
|
321
|
+
|
|
322
|
+
* **api:** manual updates ([2fa1a33](https://github.com/llamastack/llama-stack-client-typescript/commit/2fa1a330cc6dce3f8057ba1f7c276a636ee043f5))
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
* **client:** fix circular dependencies and offset pagination ([c6badf8](https://github.com/llamastack/llama-stack-client-typescript/commit/c6badf8b6f9fa2fea0721eca5618705f93120d66))
|
|
328
|
+
* coerce nullable values to undefined ([baa0d06](https://github.com/llamastack/llama-stack-client-typescript/commit/baa0d060f7ed3d7819e9db923d177d3d4bd15cba))
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
### Performance Improvements
|
|
332
|
+
|
|
333
|
+
* faster formatting ([1903f1f](https://github.com/llamastack/llama-stack-client-typescript/commit/1903f1fe85cca1880b0cec165260ed68b5ba3075))
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Chores
|
|
337
|
+
|
|
338
|
+
* ci build action ([a0be0f5](https://github.com/llamastack/llama-stack-client-typescript/commit/a0be0f57c6a99d06b580d62dbbf8d8b6f1447718))
|
|
339
|
+
* do not install brew dependencies in ./scripts/bootstrap by default ([b1d5c7d](https://github.com/llamastack/llama-stack-client-typescript/commit/b1d5c7da386eb2135a25c05d9a73f4d47fbd81b6))
|
|
340
|
+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([463774e](https://github.com/llamastack/llama-stack-client-typescript/commit/463774e5208ff5d7fbff14d39954e024662c1b16))
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
### Build System
|
|
344
|
+
|
|
345
|
+
* Bump version to 0.2.19 ([6756504](https://github.com/llamastack/llama-stack-client-typescript/commit/6756504abce9c5751634436e9a88be03b11b2baa))
|
|
346
|
+
* Bump version to 0.2.20 ([7e953c7](https://github.com/llamastack/llama-stack-client-typescript/commit/7e953c741922ad3b5bb02d00279dac8cb82760dc))
|
|
347
|
+
* Bump version to 0.2.21 ([50f7e6e](https://github.com/llamastack/llama-stack-client-typescript/commit/50f7e6e8784fe7ac99018dfdee23c0f5171b0c5b))
|
|
348
|
+
* Bump version to 0.2.22 ([86089a1](https://github.com/llamastack/llama-stack-client-typescript/commit/86089a11b721427bcbcd2bf9d6b1c33407d7ce9c))
|
|
349
|
+
|
|
350
|
+
## 0.2.19-alpha.1 (2025-08-26)
|
|
351
|
+
|
|
352
|
+
Full Changelog: [v0.2.18-alpha.3...v0.2.19-alpha.1](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.2.18-alpha.3...v0.2.19-alpha.1)
|
|
353
|
+
|
|
354
|
+
### Features
|
|
355
|
+
|
|
356
|
+
* **api:** fix completion response breakage perhaps? ([8afb71e](https://github.com/llamastack/llama-stack-client-typescript/commit/8afb71e178fc6d76549cfb24a3ef93915f8bb402))
|
|
357
|
+
* **api:** manual updates ([6124969](https://github.com/llamastack/llama-stack-client-typescript/commit/61249693bae9649d586cf6aab3fbebd9529c7f2b))
|
|
358
|
+
* **api:** manual updates ([58379c6](https://github.com/llamastack/llama-stack-client-typescript/commit/58379c6961ac0af1296f016fe05a9713c799f623))
|
|
359
|
+
* **api:** query_metrics, batches, changes ([8d3d366](https://github.com/llamastack/llama-stack-client-typescript/commit/8d3d366c7ed4bab6936f15668851d9ec9db77a2b))
|
|
360
|
+
* **api:** some updates to query metrics ([2434aea](https://github.com/llamastack/llama-stack-client-typescript/commit/2434aeaf2386f934b01491dfdc96463e2bb07bdd))
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Chores
|
|
364
|
+
|
|
365
|
+
* **deps:** update dependency node-fetch to v2.6.13 ([4d1ef8f](https://github.com/llamastack/llama-stack-client-typescript/commit/4d1ef8fb5e58927d2c2b80d21a95e6b53153ba6d))
|
|
366
|
+
* **internal:** formatting change ([6ea2c4e](https://github.com/llamastack/llama-stack-client-typescript/commit/6ea2c4e31d861f23aa5b2cc36664a6d48623e881))
|
|
367
|
+
* **internal:** formatting change ([2221870](https://github.com/llamastack/llama-stack-client-typescript/commit/2221870d728ed08ddf10c2f037784ab67005df43))
|
|
368
|
+
* update ([3a17e19](https://github.com/llamastack/llama-stack-client-typescript/commit/3a17e196b631a62ac1642b67a6dbd8ada0bb5244))
|
|
369
|
+
* update CI script ([bff686d](https://github.com/llamastack/llama-stack-client-typescript/commit/bff686d2311e714ab5f082304c0d8e865990f29e))
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
### Build System
|
|
373
|
+
|
|
374
|
+
* Bump version to 0.2.18 ([7549391](https://github.com/llamastack/llama-stack-client-typescript/commit/754939187da2726e54d902241747351d120f5174))
|
|
375
|
+
|
|
376
|
+
## 0.2.18-alpha.3 (2025-08-14)
|
|
377
|
+
|
|
378
|
+
Full Changelog: [v0.2.17...v0.2.18-alpha.3](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.2.17...v0.2.18-alpha.3)
|
|
379
|
+
|
|
380
|
+
### Features
|
|
381
|
+
|
|
382
|
+
* **api:** update via SDK Studio ([cda87f0](https://github.com/llamastack/llama-stack-client-typescript/commit/cda87f0a9c62078aadd380069502f689051db420))
|
|
383
|
+
* include tavily secret if available in requests ([#18](https://github.com/llamastack/llama-stack-client-typescript/issues/18)) ([b86d1da](https://github.com/llamastack/llama-stack-client-typescript/commit/b86d1da2d249b555079e02c849e39b231632b0b1))
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
### Bug Fixes
|
|
387
|
+
|
|
388
|
+
* update inference/agent example scripts to be more robust ([#14](https://github.com/llamastack/llama-stack-client-typescript/issues/14)) ([697e755](https://github.com/llamastack/llama-stack-client-typescript/commit/697e755902e2b3b7c471ea33ed387e542e622eda))
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Chores
|
|
392
|
+
|
|
393
|
+
* **copy:** Copy changes over from llamastack/ org repository ([#28](https://github.com/llamastack/llama-stack-client-typescript/issues/28)) ([26105c4](https://github.com/llamastack/llama-stack-client-typescript/commit/26105c463b2d73c52d3bb989baa5282d5923c8a3))
|
|
394
|
+
* sync repo ([6416e59](https://github.com/llamastack/llama-stack-client-typescript/commit/6416e59b0803e074c3be862b46b84d55fc0045f8))
|
|
395
|
+
* Update CODEOWNERS ([#26](https://github.com/llamastack/llama-stack-client-typescript/issues/26)) ([3d9d160](https://github.com/llamastack/llama-stack-client-typescript/commit/3d9d160f0a141344c5230c2b96bb4dd1c01f91e6))
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Build System
|
|
399
|
+
|
|
400
|
+
* Bump version to 0.2.10 ([8f251cb](https://github.com/llamastack/llama-stack-client-typescript/commit/8f251cb192739b65e0f9b6943f919494aff6bc28))
|
|
401
|
+
* Bump version to 0.2.11 ([ddf1578](https://github.com/llamastack/llama-stack-client-typescript/commit/ddf1578c4e66754afbe209b01807e666da67f545))
|
|
402
|
+
* Bump version to 0.2.12 ([5f5f0cc](https://github.com/llamastack/llama-stack-client-typescript/commit/5f5f0cc2ee15f4771180cff83d3cfdf0ddfa99d0))
|
|
403
|
+
* Bump version to 0.2.13 ([55e639a](https://github.com/llamastack/llama-stack-client-typescript/commit/55e639a13e2efa091ddfd0304181380882840371))
|
|
404
|
+
* Bump version to 0.2.4 ([8ee7dd6](https://github.com/llamastack/llama-stack-client-typescript/commit/8ee7dd698f2175dc76028f3af042ad0f5d7e3ae0))
|
|
405
|
+
* Bump version to 0.2.5 ([1508978](https://github.com/llamastack/llama-stack-client-typescript/commit/1508978dba176b8423e2837820ce5143fa1e999a))
|
|
406
|
+
* Bump version to 0.2.6 ([59edd92](https://github.com/llamastack/llama-stack-client-typescript/commit/59edd92329118c3beef87ad4018db5488a3133f1))
|
|
407
|
+
* Bump version to 0.2.7 ([de56089](https://github.com/llamastack/llama-stack-client-typescript/commit/de56089dd0b08b289b5bcaf9d876000403045546))
|
|
408
|
+
* Bump version to 0.2.8 ([6067307](https://github.com/llamastack/llama-stack-client-typescript/commit/6067307289b2ef32fa9bf72cfbf694967746e264))
|
|
409
|
+
* Bump version to 0.2.9 ([9d38ef8](https://github.com/llamastack/llama-stack-client-typescript/commit/9d38ef8aa6c3e7201a9e16094df9d5df27770a5c))
|
|
410
|
+
|
|
411
|
+
## 0.2.17 (2025-08-06)
|
|
412
|
+
|
|
413
|
+
Full Changelog: [v0.2.15...v0.2.17](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.2.15...v0.2.17)
|
|
414
|
+
|
|
415
|
+
### Features
|
|
416
|
+
|
|
417
|
+
* **api:** update via SDK Studio ([9803419](https://github.com/llamastack/llama-stack-client-typescript/commit/98034195897ff31be9164761450bcab933e381cc))
|
|
418
|
+
* **api:** update via SDK Studio ([57bb86c](https://github.com/llamastack/llama-stack-client-typescript/commit/57bb86c95fa5925661f243fb9c9e953ac451a392))
|
|
419
|
+
* **api:** update via SDK Studio ([40c2189](https://github.com/llamastack/llama-stack-client-typescript/commit/40c218958db8991a7483ed9ace4242d171770d42))
|
|
420
|
+
* **api:** update via SDK Studio ([26b572d](https://github.com/llamastack/llama-stack-client-typescript/commit/26b572d92a150ef1ee25ec6efd0e9bd38f321072))
|
|
421
|
+
* **api:** update via SDK Studio ([8a48a6f](https://github.com/llamastack/llama-stack-client-typescript/commit/8a48a6fe63d13817953c2acb4fbf5b4ab6136f4a))
|
|
422
|
+
* **api:** update via SDK Studio ([3ea8a73](https://github.com/llamastack/llama-stack-client-typescript/commit/3ea8a73c9d8e66bbc3650aa7e6a19a4ce07f30c5))
|
|
423
|
+
* **api:** update via SDK Studio ([cddd18f](https://github.com/llamastack/llama-stack-client-typescript/commit/cddd18fb70e3830d7062d12aab4754c3e598bbd2))
|
|
424
|
+
* **api:** update via SDK Studio ([fc4fbf9](https://github.com/llamastack/llama-stack-client-typescript/commit/fc4fbf94810db7f89288cc36780d2616c8fc715a))
|
|
425
|
+
* **api:** update via SDK Studio ([2a981d4](https://github.com/llamastack/llama-stack-client-typescript/commit/2a981d45f801bdf82e43c6d7d7c6674cc03cadc3))
|
|
426
|
+
* **api:** update via SDK Studio ([14544ce](https://github.com/llamastack/llama-stack-client-typescript/commit/14544ce36d7a33509af85783a421d9c1995e22d1))
|
|
427
|
+
* **api:** update via SDK Studio ([57c0764](https://github.com/llamastack/llama-stack-client-typescript/commit/57c07641906fc04eb9eadfd12f672e28a3a2efbc))
|
|
428
|
+
* **api:** update via SDK Studio ([426728c](https://github.com/llamastack/llama-stack-client-typescript/commit/426728c7f86ce3385eb8c116f41a5b192abd5d0c))
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### Bug Fixes
|
|
432
|
+
|
|
433
|
+
* **ci:** update version, skip a failing test ([#4](https://github.com/llamastack/llama-stack-client-typescript/issues/4)) ([7a5dbe7](https://github.com/llamastack/llama-stack-client-typescript/commit/7a5dbe7ed59b24feda5d73df8808fde2d337fc2a))
|
|
434
|
+
* **client:** don't send `Content-Type` for bodyless methods ([6806e8e](https://github.com/llamastack/llama-stack-client-typescript/commit/6806e8ef31302a0f2ca0ab9ae36e4781e5f0adf7))
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
### Chores
|
|
438
|
+
|
|
439
|
+
* **internal:** codegen related update ([267a378](https://github.com/llamastack/llama-stack-client-typescript/commit/267a378b1999abd5f17f08b5792ee99d9c405439))
|
|
440
|
+
* **internal:** codegen related update ([79e7896](https://github.com/llamastack/llama-stack-client-typescript/commit/79e78969a31df16ef35901c3ce4c003f70d59778))
|
|
441
|
+
* **internal:** remove redundant imports config ([f19eb25](https://github.com/llamastack/llama-stack-client-typescript/commit/f19eb258d836c7de4fb719c62dabcbfb502ecc6c))
|
|
442
|
+
* make some internal functions async ([e2797ae](https://github.com/llamastack/llama-stack-client-typescript/commit/e2797ae1e88960ffa5b13a89103d4ee9972803f9))
|
|
443
|
+
* **mcp:** rework imports in tools ([9486e73](https://github.com/llamastack/llama-stack-client-typescript/commit/9486e7319d36cb8efe86568884057c65e91d84b2))
|
|
444
|
+
* mention unit type in timeout docs ([c2b9867](https://github.com/llamastack/llama-stack-client-typescript/commit/c2b986793dd9f2fa55e8f4ce9c463a4d99635ab4))
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
### Build System
|
|
448
|
+
|
|
449
|
+
* Bump version to 0.2.14 ([4d2c696](https://github.com/llamastack/llama-stack-client-typescript/commit/4d2c696b916c9868be61fff31f008442cb346eca))
|
|
450
|
+
* Bump version to 0.2.15 ([6645f62](https://github.com/llamastack/llama-stack-client-typescript/commit/6645f629844fd24b7e8b8fab9089cf1ba7cb9352))
|
|
451
|
+
* Bump version to 0.2.16 ([fe9ab2e](https://github.com/llamastack/llama-stack-client-typescript/commit/fe9ab2e081df8f9f254b74e3bc42ac880dda765f))
|
|
452
|
+
* Bump version to 0.2.17 ([7da4cca](https://github.com/llamastack/llama-stack-client-typescript/commit/7da4cca39c982d6f3f07fa09a9428983d233bc5e))
|
|
453
|
+
|
|
454
|
+
## 0.1.0-alpha.3 (2025-06-28)
|
|
455
|
+
|
|
456
|
+
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
|
|
457
|
+
|
|
458
|
+
### Chores
|
|
459
|
+
|
|
460
|
+
* **ci:** only run for pushes and fork pull requests ([70cf3b4](https://github.com/llamastack/llama-stack-client-typescript/commit/70cf3b4cfe81f5d4757f05ea0372342c9c8ce08b))
|
|
461
|
+
|
|
462
|
+
## 0.1.0-alpha.2 (2025-06-27)
|
|
463
|
+
|
|
464
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
|
465
|
+
|
|
466
|
+
### Features
|
|
467
|
+
|
|
468
|
+
* **api:** update via SDK Studio ([a00f961](https://github.com/llamastack/llama-stack-client-typescript/commit/a00f961a3a4a8961cd54ad6a92a52aa34cb0d041))
|
|
469
|
+
* **api:** update via SDK Studio ([bef1e47](https://github.com/llamastack/llama-stack-client-typescript/commit/bef1e47ad9fe9a03e8ffdaa632981c0666919b73))
|
|
470
|
+
* **api:** update via SDK Studio ([7fb44fa](https://github.com/llamastack/llama-stack-client-typescript/commit/7fb44fab41cd95410115d12a7855fd12fbd3b34c))
|
|
471
|
+
|
|
472
|
+
## 0.1.0-alpha.1 (2025-06-27)
|
|
473
|
+
|
|
474
|
+
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/llamastack/llama-stack-client-typescript/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
|
|
475
|
+
|
|
476
|
+
### Features
|
|
477
|
+
|
|
478
|
+
* **client:** add support for endpoint-specific base URLs ([4c942da](https://github.com/llamastack/llama-stack-client-typescript/commit/4c942da59c2e3d40b9dacd8198e52ee60b403849))
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
### Bug Fixes
|
|
482
|
+
|
|
483
|
+
* **client:** always overwrite when merging headers ([31ec06d](https://github.com/llamastack/llama-stack-client-typescript/commit/31ec06d09d5143cb2b545114a9436059e06e78d4))
|
|
484
|
+
* **client:** explicitly copy fetch in withOptions ([aa0e2a6](https://github.com/llamastack/llama-stack-client-typescript/commit/aa0e2a685e75c31678dbef7be8381ce55ff01800))
|
|
485
|
+
* **client:** get fetchOptions type more reliably ([5e30a99](https://github.com/llamastack/llama-stack-client-typescript/commit/5e30a9916c22bfb4d00bfaafa27449fb07fd8f68))
|
|
486
|
+
* compat with more runtimes ([625a6db](https://github.com/llamastack/llama-stack-client-typescript/commit/625a6db4c7d07936c854cbddc17b859290f9f2c4))
|
|
487
|
+
* publish script — handle NPM errors correctly ([39a151f](https://github.com/llamastack/llama-stack-client-typescript/commit/39a151fe741ebce64d96ee80c6abe954a4b7f92d))
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
### Chores
|
|
491
|
+
|
|
492
|
+
* adjust eslint.config.mjs ignore pattern ([f0198eb](https://github.com/llamastack/llama-stack-client-typescript/commit/f0198ebf4d831ecc7089b382e1ab8317d7caec34))
|
|
493
|
+
* avoid type error in certain environments ([c120307](https://github.com/llamastack/llama-stack-client-typescript/commit/c12030797aeb66958347d1c29d47e6bde73c6d19))
|
|
494
|
+
* change publish docs url ([8165807](https://github.com/llamastack/llama-stack-client-typescript/commit/8165807d5c54cd91549ec66e127e0c5afd2d595d))
|
|
495
|
+
* **ci:** enable for pull requests ([85ff8d9](https://github.com/llamastack/llama-stack-client-typescript/commit/85ff8d9c3b928405c85f682b1c56c22340efabc8))
|
|
496
|
+
* **client:** refactor imports ([b2ab744](https://github.com/llamastack/llama-stack-client-typescript/commit/b2ab74493d3d528f3db9bf84a7af3ffe291efa54))
|
|
497
|
+
* **deps:** bump eslint-plugin-prettier ([1041139](https://github.com/llamastack/llama-stack-client-typescript/commit/104113998e2c3412112a49d75596c4496d58fd43))
|
|
498
|
+
* **docs:** grammar improvements ([461216e](https://github.com/llamastack/llama-stack-client-typescript/commit/461216eaac75ed802adb8cda21d5f88498fbadcc))
|
|
499
|
+
* **docs:** use top-level-await in example snippets ([74b5549](https://github.com/llamastack/llama-stack-client-typescript/commit/74b5549f48e82f05e5b507393026542d939a6b27))
|
|
500
|
+
* improve publish-npm script --latest tag logic ([5dd9d90](https://github.com/llamastack/llama-stack-client-typescript/commit/5dd9d9031ded40d4d20ef3fb2aa101f743f7b593))
|
|
501
|
+
* **internal:** add pure annotations, make base APIResource abstract ([c239e7d](https://github.com/llamastack/llama-stack-client-typescript/commit/c239e7dad3fa8254cb90ea78a93d8aad5e3b90be))
|
|
502
|
+
* **internal:** fix readablestream types in node 20 ([287f657](https://github.com/llamastack/llama-stack-client-typescript/commit/287f657d36d0548502f12802b8ea17f627da1f20))
|
|
503
|
+
* **internal:** update jest config ([a36fe70](https://github.com/llamastack/llama-stack-client-typescript/commit/a36fe70319c6a033a9deedee714102bee04c97e1))
|
|
504
|
+
* **package:** remove engines ([6066770](https://github.com/llamastack/llama-stack-client-typescript/commit/6066770fb1c17521dcdc2237156ba88b42beed94))
|
|
505
|
+
* **readme:** update badges ([5239745](https://github.com/llamastack/llama-stack-client-typescript/commit/5239745b18dded8a88500cac31138bd170470fc9))
|
|
506
|
+
* **readme:** use better example snippet for undocumented params ([e035b8f](https://github.com/llamastack/llama-stack-client-typescript/commit/e035b8f9ac69949d6cc897be9f3bd221d8afed7e))
|
|
507
|
+
* update SDK settings ([e7d2cfc](https://github.com/llamastack/llama-stack-client-typescript/commit/e7d2cfcc355eb5990ef5e750cb18ace391e75b5b))
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
### Refactors
|
|
511
|
+
|
|
512
|
+
* **types:** replace Record with mapped types ([ef71453](https://github.com/llamastack/llama-stack-client-typescript/commit/ef7145362e215ac5dffbeb59ca3fdc944edfe183))
|
package/dist/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright 2026 ogx-client
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|