Skip to content

Commit 35f8cf9

Browse files
committed
feat(ts-sdk): release v0.0.87
1 parent d187be1 commit 35f8cf9

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

clients/ts-sdk/openapi.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8872,6 +8872,11 @@
88728872
],
88738873
"nullable": true
88748874
},
8875+
"fulltext_content": {
8876+
"type": "string",
8877+
"description": "If fulltext_content is present, it will be used for creating the fulltext and bm25 sparse vectors instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and used for semantic functionality unless the corresponding `semantic_content` field is defined. `chunk_html` must still be present for the chunk to be created properly.",
8878+
"nullable": true
8879+
},
88758880
"group_ids": {
88768881
"type": "array",
88778882
"items": {
@@ -8935,7 +8940,7 @@
89358940
},
89368941
"semantic_content": {
89378942
"type": "string",
8938-
"description": "If semantic_content is present, it will be used for creating semantic embeddings instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and always used for fulltext functionality. `chunk_html` must still be present for the chunk to be created properly.",
8943+
"description": "If semantic_content is present, it will be used for creating semantic embeddings instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and used for fulltext functionality unless the corresponding `fulltext_content` field is defined. `chunk_html` must still be present for the chunk to be created properly.",
89398944
"nullable": true
89408945
},
89418946
"split_avg": {

clients/ts-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"files": [
1818
"dist"
1919
],
20-
"version": "0.0.86",
20+
"version": "0.0.87",
2121
"license": "MIT",
2222
"scripts": {
2323
"lint": "eslint 'src/**/*.ts'",

clients/ts-sdk/src/types.gen.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,10 @@ export type ChunkReqPayload = {
447447
*/
448448
convert_html_to_text?: (boolean) | null;
449449
fulltext_boost?: ((FullTextBoost) | null);
450+
/**
451+
* If fulltext_content is present, it will be used for creating the fulltext and bm25 sparse vectors instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and used for semantic functionality unless the corresponding `semantic_content` field is defined. `chunk_html` must still be present for the chunk to be created properly.
452+
*/
453+
fulltext_content?: (string) | null;
450454
/**
451455
* Group ids are the Trieve generated ids of the groups that the chunk should be placed into. This is useful for when you want to create a chunk and add it to a group or multiple groups in one request. Groups with these Trieve generated ids must be created first, it cannot be arbitrarily created through this route.
452456
*/
@@ -478,7 +482,7 @@ export type ChunkReqPayload = {
478482
num_value?: (number) | null;
479483
semantic_boost?: ((SemanticBoost) | null);
480484
/**
481-
* If semantic_content is present, it will be used for creating semantic embeddings instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and always used for fulltext functionality. `chunk_html` must still be present for the chunk to be created properly.
485+
* If semantic_content is present, it will be used for creating semantic embeddings instead of the innerText `chunk_html`. `chunk_html` will still be the only thing stored and used for fulltext functionality unless the corresponding `fulltext_content` field is defined. `chunk_html` must still be present for the chunk to be created properly.
482486
*/
483487
semantic_content?: (string) | null;
484488
/**

0 commit comments

Comments
 (0)