@absolutejs/absolute 0.19.0-beta.459 → 0.19.0-beta.460
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/ai/index.js.map +2 -2
- package/dist/index.js +29 -34
- package/dist/index.js.map +3 -3
- package/dist/src/ai/index.d.ts +1 -1
- package/dist/src/ai/rag/index.d.ts +1 -1
- package/dist/src/ai/rag/types.d.ts +1 -1
- package/dist/src/core/prepare.d.ts +2 -51
- package/package.json +7 -7
package/dist/src/ai/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { createSQLiteRAGStore } from './rag/adapters/sqlite';
|
|
|
7
7
|
export { resolveAbsoluteSQLiteVec, resolveAbsoluteSQLiteVecExtensionPath } from './rag/resolveAbsoluteSQLiteVec';
|
|
8
8
|
export { createRAGVector, normalizeVector, querySimilarity } from './rag/adapters/utils';
|
|
9
9
|
export type { GeminiEmbeddingsConfig, OllamaEmbeddingsConfig, OpenAICompatibleEmbeddingsConfig, OpenAIEmbeddingsConfig, NativeSQLiteRAGStoreOptions, SQLiteRAGStoreOptions } from './rag';
|
|
10
|
-
export type { RAGSource, RAGBackendCapabilities, RAGCitation, RAGChunkingOptions, RAGChunkingStrategy, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGQueryInput, RAGQueryResult, RAGIngestResponse, RAGPostgresNativeDiagnostics, RAGPreparedDocument, RAGSearchRequest, RAGSourceGroup, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGStreamStage, RAGMutationResponse, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution, RAGChatPluginConfig } from '../../types/ai';
|
|
10
|
+
export type { AIHTMXRenderConfig, RAGSource, RAGBackendCapabilities, RAGCitation, RAGChunkingOptions, RAGChunkingStrategy, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGQueryInput, RAGQueryResult, RAGIngestResponse, RAGPostgresNativeDiagnostics, RAGPreparedDocument, RAGSearchRequest, RAGSourceGroup, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGStreamStage, RAGMutationResponse, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution, RAGChatPluginConfig } from '../../types/ai';
|
|
11
11
|
export { createConversationManager } from './conversationManager';
|
|
12
12
|
export { createMemoryStore } from './memoryStore';
|
|
13
13
|
export { generateId, parseAIMessage, serializeAIMessage } from './protocol';
|
|
@@ -11,5 +11,5 @@ export { resolveAbsoluteSQLiteVec, resolveAbsoluteSQLiteVecExtensionPath } from
|
|
|
11
11
|
export { createRAGVector, normalizeVector, querySimilarity } from './adapters/utils';
|
|
12
12
|
export type { GeminiEmbeddingsConfig, OllamaEmbeddingsConfig, OpenAICompatibleEmbeddingsConfig, OpenAIEmbeddingsConfig } from './embeddingProviders';
|
|
13
13
|
export type { NativeSQLiteRAGStoreOptions, SQLiteRAGStoreOptions } from './adapters/sqlite';
|
|
14
|
-
export type { RAGSource, RAGBackendCapabilities, RAGChunkingOptions, RAGChunkingStrategy, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGQueryInput, RAGQueryResult, RAGIngestResponse, RAGMutationResponse, RAGPreparedDocument, RAGSearchRequest, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution } from './types';
|
|
14
|
+
export type { AIHTMXRenderConfig, RAGSource, RAGBackendCapabilities, RAGChunkingOptions, RAGChunkingStrategy, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGQueryInput, RAGQueryResult, RAGIngestResponse, RAGMutationResponse, RAGPreparedDocument, RAGSearchRequest, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution } from './types';
|
|
15
15
|
export type { RAGPostgresNativeDiagnostics } from '../../../types/ai';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { RAGDocumentChunk, RAGQueryInput, RAGQueryResult, RAGUpsertInput } from '../../../types/ai';
|
|
2
|
-
export type { RAGBackendCapabilities, RAGCitation, RAGChunkingOptions, RAGChunkingStrategy, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGPreparedDocument, RAGSource, RAGSourceGroup, RAGIngestResponse, RAGMutationResponse, RAGPostgresNativeDiagnostics, RAGQueryInput, RAGQueryResult, RAGSearchRequest, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGStreamStage, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution } from '../../../types/ai';
|
|
2
|
+
export type { AIHTMXRenderConfig, RAGBackendCapabilities, RAGCitation, RAGChunkingOptions, RAGChunkingStrategy, RAGCollection, RAGCollectionSearchParams, RAGContentFormat, RAGHTMXConfig, RAGDocumentChunk, RAGDocumentChunkPreview, RAGDirectoryIngestInput, RAGDocumentFileInput, RAGDocumentIngestInput, RAGEmbeddingFunction, RAGEmbeddingInput, RAGEmbeddingProvider, RAGEmbeddingProviderLike, RAGBackendDescriptor, RAGHTMXWorkflowRenderConfig, RAGIngestDocument, RAGIndexedDocument, RAGPreparedDocument, RAGSource, RAGSourceGroup, RAGIngestResponse, RAGMutationResponse, RAGPostgresNativeDiagnostics, RAGQueryInput, RAGQueryResult, RAGSearchRequest, RAGSQLiteNativeDiagnostics, RAGStatusResponse, RAGStreamStage, RAGUpsertInput, RAGVectorStore, RAGVectorStoreStatus, SQLiteVecResolution } from '../../../types/ai';
|
|
3
3
|
export type InternalRAGStoredChunk = RAGDocumentChunk & {
|
|
4
4
|
vector: number[];
|
|
5
5
|
sourceId: string;
|
|
@@ -1,55 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Elysia } from 'elysia';
|
|
2
2
|
export declare const prepare: (configOrPath?: string) => Promise<{
|
|
3
3
|
manifest: Record<string, string>;
|
|
4
|
-
absolutejs:
|
|
5
|
-
decorator: {};
|
|
6
|
-
store: {};
|
|
7
|
-
derive: {};
|
|
8
|
-
resolve: {};
|
|
9
|
-
}, {
|
|
10
|
-
typebox: {};
|
|
11
|
-
error: {};
|
|
12
|
-
}, {
|
|
13
|
-
schema: {};
|
|
14
|
-
standaloneSchema: {};
|
|
15
|
-
macro: {};
|
|
16
|
-
macroFn: {};
|
|
17
|
-
parser: {};
|
|
18
|
-
response: {};
|
|
19
|
-
}, {
|
|
20
|
-
"hmr-status": {
|
|
21
|
-
get: {
|
|
22
|
-
body: unknown;
|
|
23
|
-
params: {};
|
|
24
|
-
query: unknown;
|
|
25
|
-
headers: unknown;
|
|
26
|
-
response: {
|
|
27
|
-
200: {
|
|
28
|
-
connectedClients: number;
|
|
29
|
-
isRebuilding: boolean;
|
|
30
|
-
manifestKeys: string[];
|
|
31
|
-
rebuildCount: number;
|
|
32
|
-
rebuildQueue: string[];
|
|
33
|
-
timestamp: number;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
};
|
|
38
|
-
}, {
|
|
39
|
-
derive: {};
|
|
40
|
-
resolve: {};
|
|
41
|
-
schema: {};
|
|
42
|
-
standaloneSchema: {};
|
|
43
|
-
response: {};
|
|
44
|
-
}, {
|
|
45
|
-
derive: {};
|
|
46
|
-
resolve: {};
|
|
47
|
-
schema: {};
|
|
48
|
-
standaloneSchema: {};
|
|
49
|
-
response: {};
|
|
50
|
-
}>;
|
|
51
|
-
} | {
|
|
52
|
-
absolutejs: <App extends AnyElysia>(app: App) => Elysia<any, {
|
|
4
|
+
absolutejs: Elysia<"", {
|
|
53
5
|
decorator: any;
|
|
54
6
|
store: {
|
|
55
7
|
[x: string]: any;
|
|
@@ -57,5 +9,4 @@ export declare const prepare: (configOrPath?: string) => Promise<{
|
|
|
57
9
|
derive: any;
|
|
58
10
|
resolve: any;
|
|
59
11
|
}, any, any, any, any, any>;
|
|
60
|
-
manifest: Record<string, string>;
|
|
61
12
|
}>;
|
package/package.json
CHANGED
|
@@ -228,12 +228,12 @@
|
|
|
228
228
|
"main": "./dist/index.js",
|
|
229
229
|
"name": "@absolutejs/absolute",
|
|
230
230
|
"optionalDependencies": {
|
|
231
|
-
"@absolutejs/native-darwin-arm64": "0.19.0-beta.
|
|
232
|
-
"@absolutejs/native-darwin-x64": "0.19.0-beta.
|
|
233
|
-
"@absolutejs/native-linux-arm64": "0.19.0-beta.
|
|
234
|
-
"@absolutejs/native-linux-x64": "0.19.0-beta.
|
|
235
|
-
"@absolutejs/native-windows-arm64": "0.19.0-beta.
|
|
236
|
-
"@absolutejs/native-windows-x64": "0.19.0-beta.
|
|
231
|
+
"@absolutejs/native-darwin-arm64": "0.19.0-beta.459",
|
|
232
|
+
"@absolutejs/native-darwin-x64": "0.19.0-beta.459",
|
|
233
|
+
"@absolutejs/native-linux-arm64": "0.19.0-beta.459",
|
|
234
|
+
"@absolutejs/native-linux-x64": "0.19.0-beta.459",
|
|
235
|
+
"@absolutejs/native-windows-arm64": "0.19.0-beta.459",
|
|
236
|
+
"@absolutejs/native-windows-x64": "0.19.0-beta.459"
|
|
237
237
|
},
|
|
238
238
|
"overrides": {
|
|
239
239
|
"@typescript-eslint/utils": "8.56.1"
|
|
@@ -314,5 +314,5 @@
|
|
|
314
314
|
"typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
|
|
315
315
|
},
|
|
316
316
|
"types": "./dist/src/index.d.ts",
|
|
317
|
-
"version": "0.19.0-beta.
|
|
317
|
+
"version": "0.19.0-beta.460"
|
|
318
318
|
}
|