Skip to content

Commit ffa9d3f

Browse files
authored
Merge pull request #59 from isaacus-dev/release-please--branches--main--changes--next--components--isaacus
release: 0.19.1
2 parents b9f29f5 + ee54c3c commit ffa9d3f

9 files changed

Lines changed: 22 additions & 13 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.19.0"
2+
".": "0.19.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 5
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-46de7b353c33e2b6c139e564caeec9e0462ad714121690f65167a7943e325000.yml
3-
openapi_spec_hash: 6527287f9709a8741c9cc5b4181d7bb1
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-854d1a74fd0240b79b6a7902200adf22b85d5cb67710abe7c0177b4f8801157f.yml
3+
openapi_spec_hash: 9a141dbe42dfb83a674e69441888776f
44
config_hash: 9040e7359f066240ad536041fb2c5185

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.19.1 (2026-02-11)
4+
5+
Full Changelog: [v0.19.0...v0.19.1](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.19.0...v0.19.1)
6+
7+
### Documentation
8+
9+
* **api:** minor description correction ([01276b0](https://github.com/isaacus-dev/isaacus-typescript/commit/01276b090580218e119d12a689569ccb980297af))
10+
* **api:** update example overflow strategy for enrichment ([4ea026d](https://github.com/isaacus-dev/isaacus-typescript/commit/4ea026d458e41d0cbee6356de3e26b787a60dbd2))
11+
312
## 0.19.0 (2026-02-11)
413

514
Full Changelog: [v0.18.0...v0.19.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.18.0...v0.19.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus",
3-
"version": "0.19.0",
3+
"version": "0.19.1",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus-mcp",
3-
"version": "0.19.0",
3+
"version": "0.19.1",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <support@isaacus.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const newMcpServer = async () =>
5858
new McpServer(
5959
{
6060
name: 'isaacus_api',
61-
version: '0.19.0',
61+
version: '0.19.1',
6262
},
6363
{
6464
instructions: await getInstructions(),

src/resources/enrichments.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ export interface EnrichmentCreateParams {
104104
/**
105105
* The strategy for handling content exceeding the model's maximum input length.
106106
*
107-
* `auto`, which is the default and recommended setting, currently behaves the same
108-
* as `chunk`, which intelligently breaks the input up into smaller chunks and then
109-
* stitches the results back together into a single prediction. In the future
110-
* `auto` may implement even more sophisticated strategies for handling long
111-
* contexts such as leveraging chunk overlap and/or a specialized stitching model.
107+
* `auto`, which is the recommended setting, currently behaves the same as `chunk`,
108+
* which intelligently breaks the input up into smaller chunks and then stitches
109+
* the results back together into a single prediction. In the future `auto` may
110+
* implement even more sophisticated strategies for handling long contexts such as
111+
* leveraging chunk overlap and/or a specialized stitching model.
112112
*
113113
* `chunk` breaks the input up into smaller chunks that fit within the model's
114114
* context window and then intelligently merges the results into a single

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.19.0'; // x-release-please-version
1+
export const VERSION = '0.19.1'; // x-release-please-version

tests/api-resources/enrichments.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('resource enrichments', () => {
2828
const response = await client.enrichments.create({
2929
model: 'kanon-2-enricher',
3030
texts: ['1.5 You (the "User") agree to be bound by these Terms.'],
31-
overflow_strategy: null,
31+
overflow_strategy: 'auto',
3232
});
3333
});
3434
});

0 commit comments

Comments
 (0)