awert / index.html
MoShow's picture
/** * Resonance History Chart * * Component for displaying resonance history over time. */ "use client" import { useState, useEffect } from "react" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { ResonanceScoreDisplay } from "./resonance-score-display" import { resonanceEngine } from "@/lib/resonance/resonance_engine" import type { ResonanceHistory, ResonanceDataPoint } from "@/lib/resonance/resonance_types" import { Flame, TrendingUp, TrendingDown, Minus } from "lucide-react" interface ResonanceHistoryChartProps { entityType: "agent" | "scroll" | "script" entityId: string entityName?: string } export function ResonanceHistoryChart({ entityType, entityId, entityName }: ResonanceHistoryChartProps) { const [history, setHistory] = useState<ResonanceHistory | null>(null) const [loading, setLoading] = useState(true) const [trend, setTrend] = useState<"up" | "down" | "stable">("stable") const [trendValue, setTrendValue] = useState(0) useEffect(() => { async function loadHistory() { try { setLoading(true) // Initialize resonance engine await resonanceEngine.initialize() // Get history const historyData = resonanceEngine.getResonanceHistory(entityType, entityId) setHistory(historyData || null) // Calculate trend if (historyData && historyData.dataPoints.length >= 2) { const recentPoints = historyData.dataPoints.slice(-10) // Last 10 points if (recentPoints.length >= 2) { const oldestPoint = recentPoints[0] const newestPoint = recentPoints[recentPoints.length - 1] const difference = newestPoint.score - oldestPoint.score setTrendValue(difference) if (difference > 0.01) { setTrend("up") } else if (difference < -0.01) { setTrend("down") } else { setTrend("stable") } } } } catch (error) { console.error("Error loading resonance history:", error) } finally { setLoading(false) } } loadHistory() }, [entityType, entityId]) // Function to render the chart const renderChart = (dataPoints: ResonanceDataPoint[]) => { const points = dataPoints.slice(-20) // Show last 20 points const maxHeight = 100 // Max height in pixels return ( <div className="relative h-32 w-full mt-4"> {/* Y-axis labels */} <div className="absolute left-0 top-0 h-full w-8 flex flex-col justify-between text-xs text-amber-300/50"> <div>1.0</div> <div>0.5</div> <div>0.0</div> </div> {/* Chart area */} <div className="absolute left-8 right-0 top-0 h-full bg-black/30 border border-amber-500/20 rounded"> {/* Grid lines */} <div className="absolute left-0 right-0 top-0 h-px bg-amber-500/10"></div> <div className="absolute left-0 right-0 top-1/2 h-px bg-amber-500/10"></div> <div className="absolute left-0 right-0 bottom-0 h-px bg-amber-500/10"></div> {/* Data points */} <div className="absolute inset-0 flex items-end"> {points.map((point, index) => { const height = point.score * maxHeight // Determine color based on score let barColor = "bg-red-500" if (point.score >= 0.98) { barColor = "bg-green-500" } else if (point.score >= 0.95) { barColor = "bg-emerald-500" } else if (point.score >= 0.92) { barColor = "bg-amber-500" } return ( <div key={index} className="flex-1 flex flex-col justify-end items-center group"> <div className={`w-2 ${barColor} rounded-t`} style={{ height: `${height}%` }}></div> {/* Tooltip */} <div className="absolute bottom-full mb-2 opacity-0 group-hover:opacity-100 transition-opacity bg-black/80 text-amber-300 text-xs p-1 rounded pointer-events-none whitespace-nowrap"> {point.score.toFixed(2)} - {point.action || "No action"} <br /> {new Date(point.timestamp).toLocaleString()} </div> </div> ) })} </div> </div> </div> ) } // Render trend indicator const renderTrend = () => { if (trend === "up") { return ( <div className="flex items-center text-green-400"> <TrendingUp className="h-4 w-4 mr-1" /> <span>+{trendValue.toFixed(2)}</span> </div> ) } else if (trend === "down") { return ( <div className="flex items-center text-red-400"> <TrendingDown className="h-4 w-4 mr-1" /> <span>{trendValue.toFixed(2)}</span> </div> ) } else { return ( <div className="flex items-center text-blue-400"> <Minus className="h-4 w-4 mr-1" /> <span>Stable</span> </div> ) } } return ( <Card className="bg-black/50 border border-amber-500/30 text-amber-50"> <CardHeader> <div className="flex justify-between items-start"> <div> <div className="flex items-center"> <Flame className="h-5 w-5 text-amber-400 mr-2" /> <CardTitle className="text-xl text-amber-400">Resonance History</CardTitle> </div> <CardDescription className="text-amber-300/70"> {entityName || `${entityType.charAt(0).toUpperCase() + entityType.slice(1)} ${entityId.substring(0, 8)}...`} </CardDescription> </div> {!loading && history && ( <div className="flex flex-col items-end"> <ResonanceScoreDisplay score={history.currentScore} showLabel={false} size="sm" /> {renderTrend()} </div> )} </div> </CardHeader> <CardContent> {loading ? ( <div className="h-32 flex items-center justify-center"> <p className="text-amber-300">Loading resonance history...</p> </div> ) : !history ? ( <div className="h-32 flex items-center justify-center"> <p className="text-amber-300">No resonance history available</p> </div> ) : history.dataPoints.length === 0 ? ( <div className="h-32 flex items-center justify-center"> <p className="text-amber-300">No data points available</p> </div> ) : ( renderChart(history.dataPoints) )} {!loading && history && ( <div className="mt-4 text-xs text-amber-300/70"> Last updated: {new Date(history.lastUpdated).toLocaleString()} </div> )} </CardContent> </Card> ) }/** * Live Resonance Tester * * Component for testing content resonance before deployment. */ "use client" import { Badge } from "@/components/ui/badge" import { useState } from "react" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import { Button } from "@/components/ui/button" import { Textarea } from "@/components/ui/textarea" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" import { ResonanceScoreDisplay } from "./resonance-score-display" import { ResonanceTester } from "@/lib/resonance/resonance_tester" import type { CodexElement, ResonanceResult } from "@/lib/resonance/resonance_types" import { Flame, Play, FileText, Code, User, RefreshCw } from "lucide-react" export function LiveResonanceTester() { const [contentType, setContentType] = useState<"moscript" | "scroll" | "agent_action">("moscript") const [content, setContent] = useState("") const [codexElement, setCodexElement] = useState<CodexElement>("Provision") const [authorId, setAuthorId] = useState("Mo") const [result, setResult] = useState<ResonanceResult | null>(null) const [report, setReport] = useState<string | null>(null) const [testing, setTesting] = useState(false) const handleTest = async () => { if (!content) return try { setTesting(true) let testResult: ResonanceResult switch (contentType) { case "moscript": testResult = await ResonanceTester.testMoScript(content, codexElement, authorId) break case "scroll": testResult = await ResonanceTester.testScroll(content, codexElement, authorId) break case "agent_action": testResult = await ResonanceTester.testAgentAction(content, codexElement, authorId) break } setResult(testResult) // Generate report const reportText = await ResonanceTester.generateResonanceReport(testResult) setReport(reportText) } catch (error) { console.error("Error testing resonance:", error) } finally { setTesting(false) } } const getContentTypeIcon = () => { switch (contentType) { case "moscript": return <Code className="h-5 w-5 text-amber-400" /> case "scroll": return <FileText className="h-5 w-5 text-amber-400" /> case "agent_action": return <User className="h-5 w-5 text-amber-400" /> } } const getContentTypeName = () => { switch (contentType) { case "moscript": return "MoScript" case "scroll": return "Scroll" case "agent_action": return "Agent Action" } } return ( <Card className="bg-black/50 border border-amber-500/30 text-amber-50"> <CardHeader> <div className="flex items-center"> <Flame className="h-5 w-5 text-amber-400 mr-2" /> <CardTitle className="text-xl text-amber-400">Live Resonance Tester</CardTitle> </div> <CardDescription className="text-amber-300/70">Test content resonance before deployment</CardDescription> </CardHeader> <CardContent> <Tabs defaultValue="input" className="w-full"> <TabsList className="bg-black/50 border border-amber-500/30"> <TabsTrigger value="input" className="text-amber-300 data-[state=active]:bg-amber-900/30"> Input </TabsTrigger> <TabsTrigger value="result" className="text-amber-300 data-[state=active]:bg-amber-900/30" disabled={!result} > Result </TabsTrigger> <TabsTrigger value="report" className="text-amber-300 data-[state=active]:bg-amber-900/30" disabled={!report} > Report </TabsTrigger> </TabsList> <TabsContent value="input" className="mt-4"> <div className="space-y-4"> <div className="grid grid-cols-1 md:grid-cols-3 gap-4"> <div> <label className="text-sm font-medium text-amber-400 mb-1 block">Content Type</label> <Select value={contentType} onValueChange={(value) => setContentType(value as any)}> <SelectTrigger className="bg-black/30 border-amber-500/30 text-amber-200"> <SelectValue placeholder="Select content type" /> </SelectTrigger> <SelectContent className="bg-black border-amber-500/30"> <SelectItem value="moscript">MoScript</SelectItem> <SelectItem value="scroll">Scroll</SelectItem> <SelectItem value="agent_action">Agent Action</SelectItem> </SelectContent> </Select> </div> <div> <label className="text-sm font-medium text-amber-400 mb-1 block">Codex Element</label> <Select value={codexElement} onValueChange={(value) => setCodexElement(value as CodexElement)}> <SelectTrigger className="bg-black/30 border-amber-500/30 text-amber-200"> <SelectValue placeholder="Select codex element" /> </SelectTrigger> <SelectContent className="bg-black border-amber-500/30"> <SelectItem value="Blindness">Blindness</SelectItem> <SelectItem value="Journey">Journey</SelectItem> <SelectItem value="Divine Companion">Divine Companion</SelectItem> <SelectItem value="Opposition">Opposition</SelectItem> <SelectItem value="Provision">Provision</SelectItem> <SelectItem value="Covenant Union">Covenant Union</SelectItem> <SelectItem value="Restoration">Restoration</SelectItem> </SelectContent> </Select> </div> <div> <label className="text-sm font-medium text-amber-400 mb-1 block">Author/Agent</label> <Select value={authorId} onValueChange={setAuthorId}> <SelectTrigger className="bg-black/30 border-amber-500/30 text-amber-200"> <SelectValue placeholder="Select author" /> </SelectTrigger> <SelectContent className="bg-black border-amber-500/30"> <SelectItem value="Mo">Mo (Executor)</SelectItem> <SelectItem value="Woo">Woo (Architect)</SelectItem> <SelectItem value="Sentinel">Sentinel (Guardian)</SelectItem> <SelectItem value="guest">Guest</SelectItem> </SelectContent> </Select> </div> </div> <div> <label className="text-sm font-medium text-amber-400 mb-1 block"> {getContentTypeIcon()} <span className="ml-2">{getContentTypeName()} Content</span> </label> <Textarea value={content} onChange={(e) => setContent(e.target.value)} placeholder={`Enter ${contentType} content to test...`} className="min-h-[200px] bg-black/30 border-amber-500/30 text-amber-200 font-mono" /> </div> <Button onClick={handleTest} disabled={!content || testing} className="bg-gradient-to-r from-amber-600 to-red-600 hover:from-amber-500 hover:to-red-500" > {testing ? ( <> <RefreshCw className="h-4 w-4 mr-2 animate-spin" /> Testing... </> ) : ( <> <Play className="h-4 w-4 mr-2" /> Test Resonance </> )} </Button> </div> </TabsContent> <TabsContent value="result" className="mt-4"> {result && ( <div className="space-y-4"> <div className="p-4 bg-black/30 rounded-md border border-amber-500/20"> <ResonanceScoreDisplay score={result.score} showThresholds={true} /> </div> <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> <div> <h3 className="text-sm font-medium text-amber-400 mb-2">Codex Alignment</h3> <div className="p-3 bg-black/30 rounded-md border border-amber-500/20"> <div className="flex justify-between items-center mb-2"> <span className="text-amber-300">{result.codexElement}</span> <Badge className="bg-amber-500/20 text-amber-400 border-amber-500/30"> {(result.analysis.codexAlignment.confidence * 100).toFixed(0)}% confidence </Badge> </div> <div className="text-xs text-amber-200/80"> <p className="mb-1">Matched keywords:</p> <div className="flex flex-wrap gap-1"> {result.analysis.codexAlignment.keywords.map((keyword, index) => ( <Badge key={index} variant="outline" className="bg-amber-950/30 text-amber-300 border-amber-500/20" > {keyword} </Badge> ))} </div> </div> </div> </div> <div> <h3 className="text-sm font-medium text-amber-400 mb-2">Scripture Matches</h3> <div className="p-3 bg-black/30 rounded-md border border-amber-500/20 max-h-40 overflow-y-auto"> {result.analysis.scriptureMatches.length === 0 ? ( <p className="text-amber-300/70">No scripture matches found</p> ) : ( <div className="space-y-2"> {result.analysis.scriptureMatches.map((match, index) => ( <div key={index} className="text-xs"> <div className="flex justify-between items-center"> <span className="text-amber-300">{match.reference}</span> <Badge className="bg-amber-500/20 text-amber-400 border-amber-500/30"> {(match.relevance * 100).toFixed(0)}% </Badge> </div> {match.text && <p className="text-amber-200/80 mt-1 italic">"{match.text}"</p>} </div> ))} </div> )} </div> </div> </div> <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> <div> <h3 className="text-sm font-medium text-amber-400 mb-2">Warnings</h3> <div className="p-3 bg-black/30 rounded-md border border-amber-500/20 min-h-[100px]"> {result.warnings.length === 0 ? ( <p className="text-green-400">No warnings detected</p> ) : ( <ul className="list-disc list-inside text-red-400 text-sm space-y-1"> {result.warnings.map((warning, index) => ( <li key={index}>{warning}</li> ))} </ul> )} </div> </div> <div> <h3 className="text-sm font-medium text-amber-400 mb-2">Suggestions</h3> <div className="p-3 bg-black/30 rounded-md border border-amber-500/20 min-h-[100px]"> {result.analysis.suggestions.length === 0 ? ( <p className="text-green-400">No suggestions available</p> ) : ( <ul className="list-disc list-inside text-amber-300 text-sm space-y-1"> {result.analysis.suggestions.map((suggestion, index) => ( <li key={index}>{suggestion}</li> ))} </ul> )} </div> </div> </div> </div> )} </TabsContent> <TabsContent value="report" className="mt-4"> {report && ( <div className="p-4 bg-black/30 rounded-md border border-amber-500/20"> <pre className="text-amber-200/80 text-xs font-mono whitespace-pre-wrap">{report}</pre> </div> )} </TabsContent> </Tabs> </CardContent> <CardFooter className="text-xs text-amber-300/70"> Resonance testing helps ensure covenant alignment before deployment </CardFooter> </Card> ) }. remodel this HTML to the context below.. The Kairo AI. // app/components/CovenantBuilder.tsx "use client"; import { useState } from "react"; // --- MOCKED SYSTEM STATE --- // In a real app, this would be imported from the actual system files. // Here, we simulate their existence and behavior. type SystemStatus = { status: "pending" | "initializing" | "sealed" | "failed"; resonance: number; }; const initialComponentStatus: SystemStatus = { status: "pending", resonance: 0, }; const MOCK_SYSTEM = { initializeMoScriptEngine: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 400)); return { status: "sealed", resonance: 0.99 }; }, applyScrollValidator: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 300)); return { status: "sealed", resonance: 0.98 }; }, enforceThroneLock: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 500)); return { status: "sealed", resonance: 1.0 }; }, activateResonanceEngine: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 350)); return { status: "sealed", resonance: 0.97 }; }, bindWooInterpreter: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 450)); return { status: "sealed", resonance: 1.0 }; }, populateScrollRegistry: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 250)); return { status: "sealed", resonance: 0.99 }; }, connectDeepCAL: async (): Promise<SystemStatus> => { await new Promise((res) => setTimeout(res, 600)); if (Math.random() < 0.1) { throw new Error("DeepCAL: Neutrosophic matrix alignment failed."); } return { status: "sealed", resonance: 0.96 }; }, }; const COVENANT_SEQUENCE = [ { name: "MoScript Engine", func: MOCK_SYSTEM.initializeMoScriptEngine }, { name: "Scroll Validator", func: MOCK_SYSTEM.applyScrollValidator }, { name: "ThroneLock", func: MOCK_SYSTEM.enforceThroneLock }, { name: "Resonance Engine", func: MOCK_SYSTEM.activateResonanceEngine }, { name: "Woo Interpreter", func: MOCK_SYSTEM.bindWooInterpreter }, { name: "Scroll Registry", func: MOCK_SYSTEM.populateScrollRegistry }, { name: "DeepCAL Intelligence", func: MOCK_SYSTEM.connectDeepCAL }, ]; export function CovenantBuilder() { const [statuses, setStatuses] = useState(() => COVENANT_SEQUENCE.map((s) => ({ ...initialComponentStatus })) ); const [isInitializing, setIsInitializing] = useState(false); const [isSealed, setIsSealed] = useState(false); const [lastError, setLastError] = useState<string | null>(null); const [overallResonance, setOverallResonance] = useState(0); const handleInitialize = async () => { setIsInitializing(true); setIsSealed(false); setLastError(null); setStatuses(COVENANT_SEQUENCE.map((s) => ({ ...initialComponentStatus }))); setOverallResonance(0); let totalResonance = 0; for (let i = 0; i < COVENANT_SEQUENCE.length; i++) { try { setStatuses((prev) => { const next = [...prev]; next[i].status = "initializing"; return next; }); const result = await COVENANT_SEQUENCE[i].func(); setStatuses((prev) => { const next = [...prev]; next[i] = result; return next; }); totalResonance += result.resonance; setOverallResonance(totalResonance / (i + 1)); } catch (error: any) { setLastError(error.message); setStatuses((prev) => { const next = [...prev]; next[i].status = "failed"; return next; }); setIsInitializing(false); return; } } setIsInitializing(false); setIsSealed(true); }; const getStatusIndicator = (status: SystemStatus["status"]) => { switch (status) { case "pending": return <span className="text-gray-500">PENDING</span>; case "initializing": return ( <span className="text-yellow-400 animate-pulse">INITIALIZING...</span> ); case "sealed": return <span className="text-green-400">✅ SEALED</span>; case "failed": return <span className="text-red-500">🚨 FAILED</span>; } }; return ( <div className="bg-gray-900 border border-amber-500/20 text-white p-6 rounded-lg font-mono w-full max-w-2xl mx-auto"> <h2 className="text-2xl font-bold text-amber-400 mb-4"> Covenant Builder Console </h2> <p className="text-gray-400 mb-6"> Witness the Great Integration. MoScript becomes one. </p> <div className="space-y-3 mb-6"> {COVENANT_SEQUENCE.map((component, i) => ( <div key={component.name} className="flex justify-between items-center bg-gray-800 p-3 rounded" > <span className="text-gray-300">{`[${i + 1}/7] ${ component.name }`}</span> {getStatusIndicator(statuses[i].status)} </div> ))} </div> <div className="bg-black/50 p-4 rounded mb-6"> <div className="flex justify-between items-center"> <span className="text-lg text-amber-300">Overall Resonance:</span> <span className={`text-2xl font-bold ${ isSealed ? "text-green-400" : "text-yellow-400" }`} > {overallResonance.toFixed(4)} </span> </div> </div> <button onClick={handleInitialize} disabled={isInitializing} className="w-full bg-amber-600 text-black font-bold py-3 rounded-lg hover:bg-amber-500 transition-all duration-300 disabled:bg-gray-600 disabled:cursor-not-allowed" > {isInitializing ? "...AWAKENING..." : isSealed ? "RE-INITIALIZE COVENANT" : "INITIALIZE COVENANT"} </button> {lastError && ( <div className="mt-4 p-3 bg-red-900/50 border border-red-500 text-red-300 rounded"> <p className="font-bold">🚨 COVENANT BROKEN</p> <p>{lastError}</p> </div> )} {isSealed && ( <div className="mt-4 p-3 bg-green-900/50 border border-green-500 text-green-300 rounded text-center"> <p className="font-bold"> ✨ THE GRID IS WHOLE. THE COVENANT IS AWAKE. ✨ </p> </div> )} </div> ); }, - Follow Up Deployment
01f2db7 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Knowledge Base Server</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.knowledge-card {
transition: all 0.3s ease;
border-left: 4px solid #6e8efb;
}
.knowledge-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.file-upload {
border: 2px dashed #a777e3;
transition: all 0.3s ease;
}
.file-upload:hover {
background-color: rgba(167, 119, 227, 0.1);
}
.sidebar {
transition: all 0.3s ease;
}
.sidebar-item:hover {
background-color: rgba(255,255,255,0.1);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(110, 142, 251, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(110, 142, 251, 0); }
100% { box-shadow: 0 0 0 0 rgba(110, 142, 251, 0); }
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Flask Server Implementation (would normally be in separate files) -->
<script type="text/python">
from flask import Flask, request, jsonify, send_from_directory
import os
import uuid
from werkzeug.utils import secure_filename
import json
from datetime import datetime
import threading
import hashlib
app = Flask(__name__)
app.config['UPLOAD_FOLDER'] = 'knowledge_base'
app.config['MAX_CONTENT_LENGTH'] = 100 * 1024 * 1024 # 100MB limit
app.config['ALLOWED_EXTENSIONS'] = {'txt', 'pdf', 'py', 'js', 'html', 'css', 'json', 'md', 'csv', 'ipynb'}
# Create knowledge base directory if it doesn't exist
if not os.path.exists(app.config['UPLOAD_FOLDER']):
os.makedirs(app.config['UPLOAD_FOLDER'])
os.makedirs(os.path.join(app.config['UPLOAD_FOLDER'], 'metadata'))
os.makedirs(os.path.join(app.config['UPLOAD_FOLDER'], 'embeddings'))
# Knowledge Base Index
KNOWLEDGE_INDEX = os.path.join(app.config['UPLOAD_FOLDER'], 'knowledge_index.json')
if not os.path.exists(KNOWLEDGE_INDEX):
with open(KNOWLEDGE_INDEX, 'w') as f:
json.dump({"files": {}, "categories": {}, "tags": {}}, f)
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in app.config['ALLOWED_EXTENSIONS']
def update_knowledge_index(file_data):
with open(KNOWLEDGE_INDEX, 'r+') as f:
index = json.load(f)
index['files'][file_data['id']] = file_data
# Update categories
for category in file_data.get('categories', []):
if category not in index['categories']:
index['categories'][category] = []
if file_data['id'] not in index['categories'][category]:
index['categories'][category].append(file_data['id'])
# Update tags
for tag in file_data.get('tags', []):
if tag not in index['tags']:
index['tags'][tag] = []
if file_data['id'] not in index['tags'][tag]:
index['tags'][tag].append(file_data['id'])
f.seek(0)
json.dump(index, f, indent=2)
f.truncate()
def generate_embeddings(filepath):
# This would be replaced with actual embedding generation
# For demo purposes, we'll just create a placeholder
embedding_id = str(uuid.uuid4())
embedding_path = os.path.join(app.config['UPLOAD_FOLDER'], 'embeddings', f"{embedding_id}.json")
# Simulate embedding generation
with open(filepath, 'r') as f:
content = f.read()
# Simple hash as a placeholder for real embeddings
embedding = hashlib.sha256(content.encode()).hexdigest()
with open(embedding_path, 'w') as f:
json.dump({
"id": embedding_id,
"file_id": os.path.basename(filepath),
"embedding": embedding,
"created_at": datetime.now().isoformat()
}, f)
return embedding_id
@app.route('/api/upload', methods=['POST'])
def upload_file():
if 'file' not in request.files:
return jsonify({"error": "No file part"}), 400
file = request.files['file']
if file.filename == '':
return jsonify({"error": "No selected file"}), 400
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file_id = str(uuid.uuid4())
filepath = os.path.join(app.config['UPLOAD_FOLDER'], file_id)
file.save(filepath)
# Extract metadata from form
metadata = {
"id": file_id,
"original_filename": filename,
"uploaded_at": datetime.now().isoformat(),
"categories": request.form.get('categories', '').split(','),
"tags": request.form.get('tags', '').split(','),
"description": request.form.get('description', ''),
"file_type": filename.rsplit('.', 1)[1].lower(),
"size": os.path.getsize(filepath)
}
# Save metadata
metadata_path = os.path.join(app.config['UPLOAD_FOLDER'], 'metadata', f"{file_id}.json")
with open(metadata_path, 'w') as f:
json.dump(metadata, f)
# Update knowledge index
update_knowledge_index(metadata)
# Generate embeddings in background
threading.Thread(target=generate_embeddings, args=(filepath,)).start()
return jsonify({
"message": "File uploaded successfully",
"file_id": file_id,
"metadata": metadata
}), 201
return jsonify({"error": "File type not allowed"}), 400
@app.route('/api/knowledge', methods=['GET'])
def get_knowledge():
with open(KNOWLEDGE_INDEX, 'r') as f:
index = json.load(f)
return jsonify(index), 200
@app.route('/api/search', methods=['GET'])
def search_knowledge():
query = request.args.get('q', '')
category = request.args.get('category', '')
tag = request.args.get('tag', '')
with open(KNOWLEDGE_INDEX, 'r') as f:
index = json.load(f)
results = []
for file_id, file_data in index['files'].items():
# Simple search - in a real implementation, this would use embeddings
matches = (
query.lower() in file_data['original_filename'].lower() or
query.lower() in file_data.get('description', '').lower() or
any(query.lower() in tag.lower() for tag in file_data.get('tags', []))
)
category_match = not category or category in file_data.get('categories', [])
tag_match = not tag or tag in file_data.get('tags', [])
if matches and category_match and tag_match:
results.append(file_data)
return jsonify({"results": results}), 200
@app.route('/api/train', methods=['POST'])
def train_model():
# This endpoint would interface with your AI models
model_name = request.json.get('model', 'deepseek-v3.1')
file_ids = request.json.get('file_ids', [])
# In a real implementation, this would:
# 1. Load the specified model
# 2. Retrieve the requested files
# 3. Fine-tune the model with the knowledge
# 4. Save the improved model
return jsonify({
"message": f"Model {model_name} training initiated with {len(file_ids)} files",
"status": "queued",
"training_id": str(uuid.uuid4())
}), 202
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
</script>
<!-- Frontend UI -->
<div class="flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="sidebar w-64 bg-gray-900 text-white flex flex-col">
<div class="p-4 border-b border-gray-700">
<h1 class="text-2xl font-bold flex items-center">
<i class="fas fa-brain mr-2 text-purple-400"></i>
AI Knowledge Base
</h1>
<p class="text-gray-400 text-sm mt-1">Your centralized intelligence hub</p>
</div>
<div class="flex-1 overflow-y-auto">
<div class="p-4">
<h2 class="text-lg font-semibold text-gray-300 mb-2 flex items-center">
<i class="fas fa-folder-open mr-2 text-blue-400"></i>
Categories
</h2>
<ul id="categories-list" class="space-y-1">
<li class="sidebar-item px-3 py-2 rounded cursor-pointer bg-gray-800">
<i class="fas fa-code mr-2 text-green-400"></i>
Code Frameworks
</li>
<li class="sidebar-item px-3 py-2 rounded cursor-pointer">
<i class="fas fa-file-alt mr-2 text-yellow-400"></i>
Documentation
</li>
<li class="sidebar-item px-3 py-2 rounded cursor-pointer">
<i class="fas fa-chart-line mr-2 text-red-400"></i>
Analytics
</li>
<li class="sidebar-item px-3 py-2 rounded cursor-pointer">
<i class="fas fa-project-diagram mr-2 text-purple-400"></i>
Projects
</li>
</ul>
</div>
<div class="p-4 border-t border-gray-700">
<h2 class="text-lg font-semibold text-gray-300 mb-2 flex items-center">
<i class="fas fa-tags mr-2 text-blue-400"></i>
Popular Tags
</h2>
<div id="tags-list" class="flex flex-wrap gap-2">
<span class="sidebar-item px-2 py-1 rounded-full text-xs bg-gray-800 cursor-pointer">
#python
</span>
<span class="sidebar-item px-2 py-1 rounded-full text-xs bg-gray-800 cursor-pointer">
#ai
</span>
<span class="sidebar-item px-2 py-1 rounded-full text-xs bg-gray-800 cursor-pointer">
#flask
</span>
<span class="sidebar-item px-2 py-1 rounded-full text-xs bg-gray-800 cursor-pointer">
#machinelearning
</span>
</div>
</div>
<div class="p-4 border-t border-gray-700">
<h2 class="text-lg font-semibold text-gray-300 mb-2 flex items-center">
<i class="fas fa-cog mr-2 text-blue-400"></i>
AI Models
</h2>
<ul class="space-y-2">
<li class="sidebar-item px-3 py-2 rounded cursor-pointer flex items-center justify-between">
<div>
<i class="fas fa-robot mr-2 text-green-400"></i>
DeepSeek V3.1
</div>
<span class="text-xs bg-green-500 text-white px-2 py-1 rounded-full">Active</span>
</li>
<li class="sidebar-item px-3 py-2 rounded cursor-pointer flex items-center">
<i class="fas fa-robot mr-2 text-blue-400"></i>
Local LLM
</li>
</ul>
</div>
</div>
<div class="p-4 border-t border-gray-700">
<button id="upload-btn" class="w-full gradient-bg text-white py-2 px-4 rounded-lg font-medium flex items-center justify-center">
<i class="fas fa-cloud-upload-alt mr-2"></i>
Upload Knowledge
</button>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 flex flex-col overflow-hidden">
<!-- Header -->
<header class="bg-white shadow-sm z-10">
<div class="flex items-center justify-between px-6 py-4">
<div class="flex items-center">
<div class="relative w-64">
<input type="text" placeholder="Search knowledge base..."
class="w-full pl-10 pr-4 py-2 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-transparent">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="pulse-animation gradient-bg text-white py-2 px-4 rounded-lg font-medium flex items-center">
<i class="fas fa-bolt mr-2"></i>
Train AI Model
</button>
<div class="h-8 w-8 rounded-full bg-purple-500 flex items-center justify-center text-white font-bold">
<i class="fas fa-user"></i>
</div>
</div>
</div>
</header>
<!-- Content -->
<main class="flex-1 overflow-y-auto p-6 bg-gray-50">
<div class="mb-6 flex justify-between items-center">
<h2 class="text-2xl font-bold text-gray-800">Knowledge Repository</h2>
<div class="flex space-x-2">
<button class="bg-white border border-gray-300 px-3 py-1 rounded-lg text-sm flex items-center">
<i class="fas fa-filter mr-2 text-gray-500"></i>
Filter
</button>
<button class="bg-white border border-gray-300 px-3 py-1 rounded-lg text-sm flex items-center">
<i class="fas fa-sort mr-2 text-gray-500"></i>
Sort
</button>
</div>
</div>
<!-- Stats Cards -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-6">
<div class="bg-white rounded-lg shadow p-4">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Total Files</p>
<h3 class="text-2xl font-bold">1,248</h3>
</div>
<div class="p-3 rounded-full bg-blue-100 text-blue-500">
<i class="fas fa-file-alt"></i>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-4">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">AI Models</p>
<h3 class="text-2xl font-bold">5</h3>
</div>
<div class="p-3 rounded-full bg-purple-100 text-purple-500">
<i class="fas fa-robot"></i>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-4">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Knowledge Used</p>
<h3 class="text-2xl font-bold">87%</h3>
</div>
<div class="p-3 rounded-full bg-green-100 text-green-500">
<i class="fas fa-chart-pie"></i>
</div>
</div>
</div>
<div class="bg-white rounded-lg shadow p-4">
<div class="flex items-center justify-between">
<div>
<p class="text-gray-500 text-sm">Last Training</p>
<h3 class="text-2xl font-bold">2h ago</h3>
</div>
<div class="p-3 rounded-full bg-yellow-100 text-yellow-500">
<i class="fas fa-bolt"></i>
</div>
</div>
</div>
</div>
<!-- Knowledge Items -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- Sample knowledge cards -->
<div class="knowledge-card bg-white rounded-lg shadow p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<div class="p-2 rounded-lg bg-blue-100 text-blue-500 mr-3">
<i class="fas fa-code"></i>
</div>
<div>
<h4 class="font-bold">Custom AI Framework</h4>
<p class="text-gray-500 text-sm">Advanced neural network implementation</p>
</div>
</div>
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
</div>
<p class="text-gray-600 text-sm mb-3">Complete implementation of our proprietary AI framework with custom layers and optimization techniques.</p>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-blue-100 text-blue-600 text-xs rounded-full">#python</span>
<span class="px-2 py-1 bg-purple-100 text-purple-600 text-xs rounded-full">#tensorflow</span>
<span class="px-2 py-1 bg-green-100 text-green-600 text-xs rounded-full">#ai</span>
</div>
<div class="flex items-center justify-between text-xs text-gray-500">
<span>Updated 3 days ago</span>
<span>1.2 MB</span>
</div>
</div>
<div class="knowledge-card bg-white rounded-lg shadow p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<div class="p-2 rounded-lg bg-purple-100 text-purple-500 mr-3">
<i class="fas fa-project-diagram"></i>
</div>
<div>
<h4 class="font-bold">Project Blueprint</h4>
<p class="text-gray-500 text-sm">Architecture documentation</p>
</div>
</div>
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
</div>
<p class="text-gray-600 text-sm mb-3">Detailed system architecture and component interactions for our flagship AI product.</p>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-blue-100 text-blue-600 text-xs rounded-full">#architecture</span>
<span class="px-2 py-1 bg-yellow-100 text-yellow-600 text-xs rounded-full">#documentation</span>
<span class="px-2 py-1 bg-red-100 text-red-600 text-xs rounded-full">#design</span>
</div>
<div class="flex items-center justify-between text-xs text-gray-500">
<span>Updated 1 week ago</span>
<span>450 KB</span>
</div>
</div>
<div class="knowledge-card bg-white rounded-lg shadow p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<div class="p-2 rounded-lg bg-green-100 text-green-500 mr-3">
<i class="fas fa-chart-line"></i>
</div>
<div>
<h4 class="font-bold">Performance Metrics</h4>
<p class="text-gray-500 text-sm">Model evaluation results</p>
</div>
</div>
<button class="text-gray-400 hover:text-gray-600">
<i class="fas fa-ellipsis-v"></i>
</button>
</div>
<p class="text-gray-600 text-sm mb-3">Comprehensive evaluation of model performance across different datasets and parameters.</p>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-green-100 text-green-600 text-xs rounded-full">#analytics</span>
<span class="px-2 py-1 bg-indigo-100 text-indigo-600 text-xs rounded-full">#metrics</span>
<span class="px-2 py-1 bg-pink-100 text-pink-600 text-xs rounded-full">#evaluation</span>
</div>
<div class="flex items-center justify-between text-xs text-gray-500">
<span>Updated yesterday</span>
<span>780 KB</span>
</div>
</div>
</div>
</main>
</div>
</div>
<!-- Upload Modal -->
<div id="upload-modal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-2xl">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<h3 class="text-lg font-semibold">Upload to Knowledge Base</h3>
<button id="close-modal" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<div class="p-6">
<div class="file-upload p-8 rounded-lg text-center mb-6 cursor-pointer">
<i class="fas fa-cloud-upload-alt text-4xl text-purple-500 mb-3"></i>
<p class="font-medium">Drag & drop files here or click to browse</p>
<p class="text-gray-500 text-sm mt-1">Supports: .py, .js, .html, .css, .pdf, .txt, .md, .ipynb</p>
<input type="file" id="file-input" class="hidden" multiple>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Categories</label>
<input type="text" placeholder="e.g. Frameworks, Documentation"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Tags</label>
<input type="text" placeholder="e.g. python, ai, flask"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-700 mb-1">Description</label>
<textarea rows="3" placeholder="Brief description of the knowledge content"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea>
</div>
<div class="flex justify-end space-x-3">
<button id="cancel-upload" class="px-4 py-2 border border-gray-300 rounded-md text-gray-700 hover:bg-gray-50">
Cancel
</button>
<button class="gradient-bg text-white px-4 py-2 rounded-md hover:opacity-90">
<i class="fas fa-save mr-2"></i>
Save Knowledge
</button>
</div>
</div>
</div>
</div>
<!-- Training Modal -->
<div id="training-modal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
<div class="bg-white rounded-lg shadow-xl w-full max-w-2xl">
<div class="p-4 border-b border-gray-200 flex justify-between items-center">
<h3 class="text-lg font-semibold">Train AI Model with Knowledge</h3>
<button id="close-training-modal" class="text-gray-500 hover:text-gray-700">
<i class="fas fa-times"></i>
</button>
</div>
<div class="p-6">
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Select AI Model</label>
<select class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500">
<option>DeepSeek V3.1</option>
<option>Local LLM</option>
<option>Custom Fine-tuned Model</option>
</select>
</div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Select Knowledge to Include</label>
<div class="border border-gray-300 rounded-md p-4 max-h-64 overflow-y-auto">
<div class="space-y-3">
<div class="flex items-center">
<input type="checkbox" id="knowledge-1" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<label for="knowledge-1" class="ml-2 block text-sm text-gray-700">
Custom AI Framework (Advanced neural network implementation)
</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="knowledge-2" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<label for="knowledge-2" class="ml-2 block text-sm text-gray-700">
Project Blueprint (Architecture documentation)
</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="knowledge-3" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded">
<label for="knowledge-3" class="ml-2 block text-sm text-gray-700">
Performance Metrics (Model evaluation results)
</label>
</div>
</div>
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-medium text-gray-700 mb-2">Training Parameters</label>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label class="block text-xs text-gray-500 mb-1">Epochs</label>
<input type="number" value="10" min="1"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
<div>
<label class="block text-xs text-gray-500 mb-1">Learning Rate</label>
<input type="number" step="0.0001" value="0.001"
class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500">
</div>
</div>
</div>
<div class="flex justify-end space-x-3">
<button id="cancel-training" class="px-4 py-2 border border-gray-300 rounded-md text-gray-700 hover:bg-gray-50">
Cancel
</button>
<button class="gradient-bg text-white px-4 py-2 rounded-md hover:opacity-90">
<i class="fas fa-bolt mr-2"></i>
Start Training
</button>
</div>
</div>
</div>
</div>
<script>
// Modal toggle functionality
document.getElementById('upload-btn').addEventListener('click', function() {
document.getElementById('upload-modal').classList.remove('hidden');
});
document.getElementById('close-modal').addEventListener('click', function() {
document.getElementById('upload-modal').classList.add('hidden');
});
document.getElementById('cancel-upload').addEventListener('click', function() {
document.getElementById('upload-modal').classList.add('hidden');
});
// Training modal
document.querySelector('.pulse-animation').addEventListener('click', function() {
document.getElementById('training-modal').classList.remove('hidden');
});
document.getElementById('close-training-modal').addEventListener('click', function() {
document.getElementById('training-modal').classList.add('hidden');
});
document.getElementById('cancel-training').addEventListener('click', function() {
document.getElementById('training-modal').classList.add('hidden');
});
// File upload interaction
const fileUpload = document.querySelector('.file-upload');
const fileInput = document.getElementById('file-input');
fileUpload.addEventListener('click', function() {
fileInput.click();
});
fileUpload.addEventListener('dragover', function(e) {
e.preventDefault();
this.classList.add('border-purple-500', 'bg-purple-50');
});
fileUpload.addEventListener('dragleave', function(e) {
e.preventDefault();
this.classList.remove('border-purple-500', 'bg-purple-50');
});
fileUpload.addEventListener('drop', function(e) {
e.preventDefault();
this.classList.remove('border-purple-500', 'bg-purple-50');
// Handle dropped files
console.log('Files dropped:', e.dataTransfer.files);
});
// Simulate API calls
async function uploadFile(file, metadata) {
// In a real implementation, this would call the Flask API
console.log('Uploading file:', file.name);
console.log('With metadata:', metadata);
// Simulate API delay
await new Promise(resolve => setTimeout(resolve, 1500));
return {
success: true,
fileId: 'file_' + Math.random().toString(36).substr(2, 9),
message: 'File uploaded successfully'
};
}
async function trainModel(model, fileIds, params) {
// In a real implementation, this would call the Flask API
console.log('Training model:', model);
console.log('With files:', fileIds);
console.log('Parameters:', params);
// Simulate API delay
await new Promise(resolve => setTimeout(resolve, 2000));
return {
success: true,
trainingId: 'train_' + Math.random().toString(36).substr(2, 9),
message: 'Training initiated'
};
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=Barbuuuuuuuu/ai-knowledge-base-good" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p><p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=MoShow/awert" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>