@limo-labs/deity 0.2.0 → 0.2.2
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.cjs +35 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -10
- package/dist/index.d.ts +16 -10
- package/dist/index.js +35 -11
- package/dist/index.js.map +1 -1
- package/dist/{jsx-dev-runtime-Dg782FK5.d.cts → jsx-dev-runtime-1R5Vpr7w.d.cts} +6 -8
- package/dist/{jsx-dev-runtime-Dg782FK5.d.ts → jsx-dev-runtime-1R5Vpr7w.d.ts} +6 -8
- package/dist/jsx-dev-runtime.d.cts +1 -1
- package/dist/jsx-dev-runtime.d.ts +1 -1
- package/dist/jsx-runtime.d.cts +1 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/package.json +1 -1
- package/README.md +0 -681
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ZodSchema } from 'zod';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Deity
|
|
4
|
+
* Deity - Conversation Types
|
|
5
5
|
*
|
|
6
6
|
* Types for optimized conversation management
|
|
7
7
|
*/
|
|
@@ -94,7 +94,7 @@ interface ConversationStats {
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
|
-
* Deity
|
|
97
|
+
* Deity - Memory Types
|
|
98
98
|
*
|
|
99
99
|
* Types for tiered memory management
|
|
100
100
|
* Based on Deity POC with Limo enhancements
|
|
@@ -187,7 +187,7 @@ interface MemoryStats {
|
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
/**
|
|
190
|
-
* Deity
|
|
190
|
+
* Deity - Session Types
|
|
191
191
|
*
|
|
192
192
|
* Types for session persistence and recovery
|
|
193
193
|
*/
|
|
@@ -292,7 +292,7 @@ interface SessionStore {
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
/**
|
|
295
|
-
* Deity
|
|
295
|
+
* Deity - UI Update Types
|
|
296
296
|
*
|
|
297
297
|
* Types for UI updates and progress tracking
|
|
298
298
|
*/
|
|
@@ -458,14 +458,12 @@ interface UIUpdateBridge {
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Deity
|
|
461
|
+
* Deity - Limo Memory Manager
|
|
462
462
|
*
|
|
463
463
|
* Simplified tiered memory manager focused on Limo-specific requirements:
|
|
464
464
|
* - loadWorkingMemory() - Context-based memory loading
|
|
465
465
|
* - Relevance scoring - Category + tags + importance + recency
|
|
466
466
|
* - Core/detailed dual-layer architecture
|
|
467
|
-
*
|
|
468
|
-
* Based on Deity POC, simplified for v4.0
|
|
469
467
|
*/
|
|
470
468
|
|
|
471
469
|
/**
|
|
@@ -602,7 +600,7 @@ declare class LimoMemoryManager {
|
|
|
602
600
|
}
|
|
603
601
|
|
|
604
602
|
/**
|
|
605
|
-
* Deity
|
|
603
|
+
* Deity - Conversation Manager
|
|
606
604
|
*
|
|
607
605
|
* Optimized conversation management with O(1) operations
|
|
608
606
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ZodSchema } from 'zod';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Deity
|
|
4
|
+
* Deity - Conversation Types
|
|
5
5
|
*
|
|
6
6
|
* Types for optimized conversation management
|
|
7
7
|
*/
|
|
@@ -94,7 +94,7 @@ interface ConversationStats {
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
|
-
* Deity
|
|
97
|
+
* Deity - Memory Types
|
|
98
98
|
*
|
|
99
99
|
* Types for tiered memory management
|
|
100
100
|
* Based on Deity POC with Limo enhancements
|
|
@@ -187,7 +187,7 @@ interface MemoryStats {
|
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
/**
|
|
190
|
-
* Deity
|
|
190
|
+
* Deity - Session Types
|
|
191
191
|
*
|
|
192
192
|
* Types for session persistence and recovery
|
|
193
193
|
*/
|
|
@@ -292,7 +292,7 @@ interface SessionStore {
|
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
/**
|
|
295
|
-
* Deity
|
|
295
|
+
* Deity - UI Update Types
|
|
296
296
|
*
|
|
297
297
|
* Types for UI updates and progress tracking
|
|
298
298
|
*/
|
|
@@ -458,14 +458,12 @@ interface UIUpdateBridge {
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* Deity
|
|
461
|
+
* Deity - Limo Memory Manager
|
|
462
462
|
*
|
|
463
463
|
* Simplified tiered memory manager focused on Limo-specific requirements:
|
|
464
464
|
* - loadWorkingMemory() - Context-based memory loading
|
|
465
465
|
* - Relevance scoring - Category + tags + importance + recency
|
|
466
466
|
* - Core/detailed dual-layer architecture
|
|
467
|
-
*
|
|
468
|
-
* Based on Deity POC, simplified for v4.0
|
|
469
467
|
*/
|
|
470
468
|
|
|
471
469
|
/**
|
|
@@ -602,7 +600,7 @@ declare class LimoMemoryManager {
|
|
|
602
600
|
}
|
|
603
601
|
|
|
604
602
|
/**
|
|
605
|
-
* Deity
|
|
603
|
+
* Deity - Conversation Manager
|
|
606
604
|
*
|
|
607
605
|
* Optimized conversation management with O(1) operations
|
|
608
606
|
*
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-1R5Vpr7w.cjs';
|
|
2
2
|
import 'zod';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-1R5Vpr7w.js';
|
|
2
2
|
import 'zod';
|
package/dist/jsx-runtime.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-1R5Vpr7w.cjs';
|
|
2
2
|
import 'zod';
|
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { af as Fragment, J as JSXComponent, F as JSXElementType, H as JSXProps, ag as jsx, ag as jsxDEV, ah as jsxs } from './jsx-dev-runtime-1R5Vpr7w.js';
|
|
2
2
|
import 'zod';
|