feat(retrieval): synchronized schema with conflict and density metrics v2.75.0
This commit is contained in:
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "g1nation",
|
"name": "g1nation",
|
||||||
"version": "2.74.0",
|
"version": "2.75.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "g1nation",
|
"name": "g1nation",
|
||||||
"version": "2.74.0",
|
"version": "2.75.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"marked": "^18.0.2"
|
"marked": "^18.0.2"
|
||||||
|
|||||||
+1
-1
@@ -2,7 +2,7 @@
|
|||||||
"name": "astra",
|
"name": "astra",
|
||||||
"displayName": "Astra",
|
"displayName": "Astra",
|
||||||
"description": "The personal intelligence layer for Antigravity and VS Code. A private cognitive partner for deep project context, memory, and proactive strategic decision-making.",
|
"description": "The personal intelligence layer for Antigravity and VS Code. A private cognitive partner for deep project context, memory, and proactive strategic decision-making.",
|
||||||
"version": "2.74.0",
|
"version": "2.75.0",
|
||||||
"publisher": "g1nation",
|
"publisher": "g1nation",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/icon.png",
|
"icon": "assets/icon.png",
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ export type RetrievalSource =
|
|||||||
| 'project-scan' // Local Project Path scan
|
| 'project-scan' // Local Project Path scan
|
||||||
| 'recent-knowledge'; // Recent Project Knowledge record
|
| 'recent-knowledge'; // Recent Project Knowledge record
|
||||||
|
|
||||||
|
export type ConflictSeverity = 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
||||||
|
|
||||||
export interface RetrievalChunk {
|
export interface RetrievalChunk {
|
||||||
id: string;
|
id: string;
|
||||||
source: RetrievalSource;
|
source: RetrievalSource;
|
||||||
@@ -29,6 +31,11 @@ export interface RetrievalChunk {
|
|||||||
category?: string;
|
category?: string;
|
||||||
isProjectEvidence?: boolean;
|
isProjectEvidence?: boolean;
|
||||||
lastUpdated?: number;
|
lastUpdated?: number;
|
||||||
|
|
||||||
|
// --- Scoring Intelligence (v2.75.0+) ---
|
||||||
|
conflictDetected?: boolean;
|
||||||
|
conflictSeverity?: ConflictSeverity;
|
||||||
|
informationDensity?: number;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user