@sweetoburrito/backstage-plugin-ai-assistant-node 0.2.1 → 0.3.0
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/index.d.ts +1 -7
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -54,12 +54,6 @@ type DataIngestionPipeline = {
|
|
|
54
54
|
start: () => Promise<void>;
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
-
type Message = {
|
|
58
|
-
id?: string;
|
|
59
|
-
role: string;
|
|
60
|
-
content: string;
|
|
61
|
-
};
|
|
62
|
-
|
|
63
57
|
type DataIngestorExtensionPoint = {
|
|
64
58
|
registerIngestor: (ingestor: Ingestor) => void;
|
|
65
59
|
};
|
|
@@ -81,4 +75,4 @@ type ModelProviderExtensionPoint = {
|
|
|
81
75
|
declare const modelProviderExtensionPoint: _backstage_backend_plugin_api.ExtensionPoint<ModelProviderExtensionPoint>;
|
|
82
76
|
|
|
83
77
|
export { dataIngestorExtensionPoint, embeddingsProviderExtensionPoint, modelProviderExtensionPoint };
|
|
84
|
-
export type { AugmentationIndexer, DataIngestionPipeline, DataIngestionPipelineOptions, DataIngestorExtensionPoint, Embedding, EmbeddingDocument, EmbeddingDocumentMetadata, EmbeddingsProvider, EmbeddingsProviderExtensionPoint, EmbeddingsSource, EntityFilterShape, Ingestor, IngestorOptions,
|
|
78
|
+
export type { AugmentationIndexer, DataIngestionPipeline, DataIngestionPipelineOptions, DataIngestorExtensionPoint, Embedding, EmbeddingDocument, EmbeddingDocumentMetadata, EmbeddingsProvider, EmbeddingsProviderExtensionPoint, EmbeddingsSource, EntityFilterShape, Ingestor, IngestorOptions, Model, ModelProviderExtensionPoint, VectorStore };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sweetoburrito/backstage-plugin-ai-assistant-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Node.js library for the ai-assistant plugin",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
"role": "node-library",
|
|
15
15
|
"pluginId": "ai-assistant",
|
|
16
16
|
"pluginPackages": [
|
|
17
|
+
"@sweetoburrito/backstage-plugin-ai-assistant",
|
|
17
18
|
"@sweetoburrito/backstage-plugin-ai-assistant-backend",
|
|
19
|
+
"@sweetoburrito/backstage-plugin-ai-assistant-common",
|
|
18
20
|
"@sweetoburrito/backstage-plugin-ai-assistant-node"
|
|
19
21
|
]
|
|
20
22
|
},
|