@yolk-sdk/knowledge 0.1.0-canary.92 → 0.1.0-canary.93
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/dist/ingestion.d.mts +3 -3
- package/package.json +2 -2
package/dist/ingestion.d.mts
CHANGED
|
@@ -31,16 +31,16 @@ declare const ingestKnowledgeDocument: (input: IngestKnowledgeDocumentInput) =>
|
|
|
31
31
|
readonly label?: string | undefined;
|
|
32
32
|
};
|
|
33
33
|
readonly status: "processing" | "ready" | "error";
|
|
34
|
-
readonly title?: string | undefined;
|
|
35
|
-
readonly summary?: string | undefined;
|
|
36
34
|
readonly metadata?: {
|
|
37
35
|
readonly [x: string]: unknown;
|
|
38
36
|
} | undefined;
|
|
39
37
|
readonly tokenCount?: number | undefined;
|
|
38
|
+
readonly title?: string | undefined;
|
|
39
|
+
readonly summary?: string | undefined;
|
|
40
40
|
readonly errorMessage?: string | undefined;
|
|
41
41
|
readonly contentHash?: string | undefined;
|
|
42
42
|
readonly chunkCount?: number | undefined;
|
|
43
|
-
}, KnowledgeIngestionError, KnowledgeSummarizer |
|
|
43
|
+
}, KnowledgeIngestionError, KnowledgeSummarizer | KnowledgeChunker | SearchIndexStore | KnowledgeEmbedder | KnowledgeExtractor>;
|
|
44
44
|
type KnowledgeIngestionPipeline = {
|
|
45
45
|
readonly ingest: (input: IngestKnowledgeDocumentInput) => ReturnType<typeof ingestKnowledgeDocument>;
|
|
46
46
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yolk-sdk/knowledge",
|
|
3
|
-
"version": "0.1.0-canary.
|
|
3
|
+
"version": "0.1.0-canary.93",
|
|
4
4
|
"description": "Domain-free knowledge document/source/file/context, ingestion, hybrid search, and lookup/manage tool helpers for agents.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"dependencies": {
|
|
107
107
|
"effect": "4.0.0-rc.115",
|
|
108
108
|
"gpt-tokenizer": "^3.4.0",
|
|
109
|
-
"@yolk-sdk/agent": "^0.1.0-canary.
|
|
109
|
+
"@yolk-sdk/agent": "^0.1.0-canary.93"
|
|
110
110
|
},
|
|
111
111
|
"scripts": {
|
|
112
112
|
"build": "tsdown",
|