@madh-io/alfred-ai 0.19.0-multi-ha.430 → 0.19.0-multi-ha.431
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/bundle/index.js +3 -3
- package/bundle/web-ui/404/index.html +1 -1
- package/bundle/web-ui/404.html +1 -1
- package/bundle/web-ui/_next/static/u1gibSuNBloXvo3T-5z3H/_buildManifest.js +1 -0
- package/bundle/web-ui/_next/static/u1gibSuNBloXvo3T-5z3H/_ssgManifest.js +1 -0
- package/bundle/web-ui/chat/index.html +1 -1
- package/bundle/web-ui/chat/index.txt +1 -1
- package/bundle/web-ui/cmdb/index.html +1 -1
- package/bundle/web-ui/cmdb/index.txt +1 -1
- package/bundle/web-ui/dashboard/index.html +1 -1
- package/bundle/web-ui/dashboard/index.txt +1 -1
- package/bundle/web-ui/docs/index.html +1 -1
- package/bundle/web-ui/docs/index.txt +1 -1
- package/bundle/web-ui/index.html +1 -1
- package/bundle/web-ui/index.txt +1 -1
- package/bundle/web-ui/itsm/index.html +1 -1
- package/bundle/web-ui/itsm/index.txt +1 -1
- package/bundle/web-ui/knowledge/index.html +1 -1
- package/bundle/web-ui/knowledge/index.txt +1 -1
- package/bundle/web-ui/settings/index.html +1 -1
- package/bundle/web-ui/settings/index.txt +1 -1
- package/package.json +1 -1
package/bundle/index.js
CHANGED
|
@@ -2195,9 +2195,9 @@ CREATE TABLE IF NOT EXISTS adapter_claims (
|
|
|
2195
2195
|
related_incident_id, opened_at, created_at, updated_at
|
|
2196
2196
|
) VALUES (?, ?, ?, ?, ?, 'open', ?, ?, ?, ?, ?, ?, ?, ?, ?)`,[s,e,t.title,t.description??null,t.severity??"medium",t.priority??3,JSON.stringify(t.affectedAssetIds??[]),JSON.stringify(t.affectedServiceIds??[]),t.symptoms??null,t.detectedBy??null,t.relatedIncidentId??null,r,r,r]),await this.getIncidentById(e,s)}async getIncidentById(e,t){let s=await this.db.queryOne("SELECT * FROM cmdb_incidents WHERE id = ? AND user_id = ?",[t,e]);return!s&&t.length>=6&&t.length<=12&&/^[0-9a-f]+$/i.test(t)&&(s=await this.db.queryOne("SELECT * FROM cmdb_incidents WHERE id LIKE ? AND user_id = ?",[t+"%",e])),s?Za(s):null}async listIncidents(e,t){let s="SELECT * FROM cmdb_incidents WHERE user_id = ?",r=[e];return t?.status&&(s+=" AND status = ?",r.push(t.status)),t?.severity&&(s+=" AND severity = ?",r.push(t.severity)),t?.since&&(s+=" AND created_at >= ?",r.push(t.since)),s+=" ORDER BY CASE severity WHEN 'critical' THEN 0 WHEN 'high' THEN 1 WHEN 'medium' THEN 2 ELSE 3 END, created_at DESC LIMIT ?",r.push(t?.limit??100),(await this.db.query(s,r)).map(Za)}async updateIncident(e,t,s){let r=await this.getIncidentById(e,t);if(!r)return null;let i=[],n=[],a=new Date().toISOString(),o={title:"title",description:"description",severity:"severity",priority:"priority",rootCause:"root_cause",resolution:"resolution",workaround:"workaround",lessonsLearned:"lessons_learned",actionItems:"action_items",postmortem:"postmortem",relatedIncidentId:"related_incident_id"};for(let[l,u]of Object.entries(o))l in s&&(i.push(`${u} = ?`),n.push(s[l]??null));let c=sm(a,this.timezone);for(let[l,u]of[["symptoms","symptoms"],["investigationNotes","investigation_notes"]])if(l in s&&s[l]){let h=r[l],p=h?`${h}
|
|
2197
2197
|
---
|
|
2198
|
-
${c} ${s[l]}`:`${c} ${s[l]}`;i.push(`${u} = ?`),n.push(p)}return s.affectedAssetIds&&(i.push("affected_asset_ids = ?"),n.push(JSON.stringify(s.affectedAssetIds))),s.affectedServiceIds&&(i.push("affected_service_ids = ?"),n.push(JSON.stringify(s.affectedServiceIds))),s.status&&s.status!==r.status&&(i.push("status = ?"),n.push(s.status),s.status==="acknowledged"&&!r.acknowledgedAt&&(i.push("acknowledged_at = ?"),n.push(a)),s.status==="resolved"&&!r.resolvedAt&&(i.push("resolved_at = ?"),n.push(a)),s.status==="closed"&&!r.closedAt&&(i.push("closed_at = ?"),n.push(a))),i.length===0?r:(i.push("updated_at = ?"),n.push(a),n.push(t,e),await this.db.execute(`UPDATE cmdb_incidents SET ${i.join(", ")} WHERE id = ? AND user_id = ?`,n),this.getIncidentById(e,t))}async closeIncident(e,t,s){return this.updateIncident(e,t,{status:"closed",resolution:s})}async findOpenIncidentForAsset(e,t,s){let i=(await this.db.query("SELECT * FROM cmdb_incidents WHERE user_id = ? AND status IN ('open', 'investigating', 'acknowledged', 'mitigating') ORDER BY created_at DESC LIMIT 100",[e])).map(Za);for(let n of i){let a=n.title.toLowerCase(),o=a.includes(t.toLowerCase()),c=s.filter(l=>a.includes(l.toLowerCase())).length;if(o&&c>=1||c>=Math.min(2,s.length))return n}return null}async findRecentIncidentForSource(e,t,s=4){let r=new Date(Date.now()-s*36e5).toISOString(),n=(await this.db.query("SELECT * FROM cmdb_incidents WHERE user_id = ? AND status NOT IN ('closed', 'cancelled', 'resolved') AND opened_at >= ? ORDER BY opened_at DESC",[e,r])).map(Za),a=t.toLowerCase();return n.find(o=>o.title.toLowerCase().includes(a))??null}async appendSymptoms(e,t,s){let r=new Date().toISOString(),n=`${sm(r,this.timezone)} ${s}`;await this.db.execute("UPDATE cmdb_incidents SET symptoms =
|
|
2198
|
+
${c} ${s[l]}`:`${c} ${s[l]}`;i.push(`${u} = ?`),n.push(p)}return s.affectedAssetIds&&(i.push("affected_asset_ids = ?"),n.push(JSON.stringify(s.affectedAssetIds))),s.affectedServiceIds&&(i.push("affected_service_ids = ?"),n.push(JSON.stringify(s.affectedServiceIds))),s.status&&s.status!==r.status&&(i.push("status = ?"),n.push(s.status),s.status==="acknowledged"&&!r.acknowledgedAt&&(i.push("acknowledged_at = ?"),n.push(a)),s.status==="resolved"&&!r.resolvedAt&&(i.push("resolved_at = ?"),n.push(a)),s.status==="closed"&&!r.closedAt&&(i.push("closed_at = ?"),n.push(a))),i.length===0?r:(i.push("updated_at = ?"),n.push(a),n.push(t,e),await this.db.execute(`UPDATE cmdb_incidents SET ${i.join(", ")} WHERE id = ? AND user_id = ?`,n),this.getIncidentById(e,t))}async closeIncident(e,t,s){return this.updateIncident(e,t,{status:"closed",resolution:s})}async findOpenIncidentForAsset(e,t,s){let i=(await this.db.query("SELECT * FROM cmdb_incidents WHERE user_id = ? AND status IN ('open', 'investigating', 'acknowledged', 'mitigating') ORDER BY created_at DESC LIMIT 100",[e])).map(Za);for(let n of i){let a=n.title.toLowerCase(),o=a.includes(t.toLowerCase()),c=s.filter(l=>a.includes(l.toLowerCase())).length;if(o&&c>=1||c>=Math.min(2,s.length))return n}return null}async findRecentIncidentForSource(e,t,s=4){let r=new Date(Date.now()-s*36e5).toISOString(),n=(await this.db.query("SELECT * FROM cmdb_incidents WHERE user_id = ? AND status NOT IN ('closed', 'cancelled', 'resolved') AND opened_at >= ? ORDER BY opened_at DESC",[e,r])).map(Za),a=t.toLowerCase();return n.find(o=>o.title.toLowerCase().includes(a))??null}async appendSymptoms(e,t,s){let r=new Date().toISOString(),n=`${sm(r,this.timezone)} ${s}`;await this.db.execute("UPDATE cmdb_incidents SET symptoms = CASE WHEN symptoms IS NULL OR symptoms = '' THEN ? ELSE concat(symptoms, ?) END, updated_at = ? WHERE id = ? AND user_id = ?",[n,`
|
|
2199
2199
|
---
|
|
2200
|
-
${n}`,
|
|
2200
|
+
${n}`,r,t,e])}async createService(e,t){let s=Ll(),r=new Date().toISOString();return await this.db.execute(`INSERT INTO cmdb_services (
|
|
2201
2201
|
id, user_id, name, description, category, environment, url, health_check_url,
|
|
2202
2202
|
health_status, criticality, dependencies, asset_ids, owner, documentation,
|
|
2203
2203
|
sla_notes, maintenance_window, tags, created_at, updated_at
|
|
@@ -2206,7 +2206,7 @@ ${n}`,n,r,t,e])}async createService(e,t){let s=Ll(),r=new Date().toISOString();r
|
|
|
2206
2206
|
affected_asset_ids, affected_service_ids, implementation_plan, rollback_plan,
|
|
2207
2207
|
test_plan, scheduled_at, linked_incident_id, created_at, updated_at
|
|
2208
2208
|
) VALUES (?, ?, ?, ?, ?, 'draft', ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,[s,e,t.title,t.description??null,t.type??"normal",t.riskLevel??"medium",JSON.stringify(t.affectedAssetIds??[]),JSON.stringify(t.affectedServiceIds??[]),t.implementationPlan??null,t.rollbackPlan??null,t.testPlan??null,t.scheduledAt??null,t.linkedIncidentId??null,r,r]),await this.getChangeRequestById(e,s)}async getChangeRequestById(e,t){let s=await this.db.queryOne("SELECT * FROM cmdb_change_requests WHERE id = ? AND user_id = ?",[t,e]);return s?rm(s):null}async listChangeRequests(e,t){let s="SELECT * FROM cmdb_change_requests WHERE user_id = ?",r=[e];return t?.status&&(s+=" AND status = ?",r.push(t.status)),t?.type&&(s+=" AND type = ?",r.push(t.type)),s+=" ORDER BY created_at DESC LIMIT ?",r.push(t?.limit??100),(await this.db.query(s,r)).map(rm)}async updateChangeRequest(e,t,s){let r=await this.getChangeRequestById(e,t);if(!r)return null;let i=[],n=[],a=new Date().toISOString(),o={title:"title",description:"description",type:"type",riskLevel:"risk_level",implementationPlan:"implementation_plan",rollbackPlan:"rollback_plan",testPlan:"test_plan",scheduledAt:"scheduled_at",result:"result"};for(let[c,l]of Object.entries(o))c in s&&(i.push(`${l} = ?`),n.push(s[c]??null));return s.affectedAssetIds&&(i.push("affected_asset_ids = ?"),n.push(JSON.stringify(s.affectedAssetIds))),s.affectedServiceIds&&(i.push("affected_service_ids = ?"),n.push(JSON.stringify(s.affectedServiceIds))),s.status&&s.status!==r.status&&(i.push("status = ?"),n.push(s.status),s.status==="in_progress"&&!r.startedAt&&(i.push("started_at = ?"),n.push(a)),["completed","failed","rolled_back"].includes(s.status)&&!r.completedAt&&(i.push("completed_at = ?"),n.push(a))),i.length===0?r:(i.push("updated_at = ?"),n.push(a),n.push(t,e),await this.db.execute(`UPDATE cmdb_change_requests SET ${i.join(", ")} WHERE id = ? AND user_id = ?`,n),this.getChangeRequestById(e,t))}async getDashboard(e){let t=await this.db.query("SELECT status, severity, COUNT(*) as cnt FROM cmdb_incidents WHERE user_id = ? AND status NOT IN ('closed', 'cancelled', 'resolved') GROUP BY status, severity",[e]),s=0,r=0;for(let h of t)s+=Number(h.cnt),h.severity==="critical"&&(r+=Number(h.cnt));let i=await this.db.query("SELECT status, COUNT(*) as cnt FROM cmdb_change_requests WHERE user_id = ? AND status IN ('draft', 'submitted', 'approved', 'in_progress') GROUP BY status",[e]),n=0,a=0;for(let h of i)n+=Number(h.cnt),h.status==="approved"&&(a+=Number(h.cnt));let o=await this.db.query("SELECT health_status, COUNT(*) as cnt FROM cmdb_services WHERE user_id = ? GROUP BY health_status",[e]),c=0,l=0,u=0;for(let h of o)h.health_status==="healthy"?c=Number(h.cnt):h.health_status==="degraded"?l=Number(h.cnt):h.health_status==="down"&&(u=Number(h.cnt));return{openIncidents:s,criticalIncidents:r,pendingChanges:n,scheduledChanges:a,servicesHealthy:c,servicesDegraded:l,servicesDown:u}}}});import{randomUUID as NT}from"node:crypto";function Yi(d){if(!d)return[];try{return JSON.parse(d)}catch{return[]}}function nm(d){return{id:d.id,userId:d.user_id,title:d.title,description:d.description,status:d.status,priority:d.priority,category:d.category,rootCauseDescription:d.root_cause_description,rootCauseCategory:d.root_cause_category,workaround:d.workaround,proposedFix:d.proposed_fix,isKnownError:!!d.is_known_error,knownErrorDescription:d.known_error_description,analysisNotes:d.analysis_notes,linkedIncidentIds:Yi(d.linked_incident_ids),linkedChangeRequestId:d.linked_change_request_id,affectedAssetIds:Yi(d.affected_asset_ids),affectedServiceIds:Yi(d.affected_service_ids),detectedBy:d.detected_by??"manual",detectionMethod:d.detection_method,detectedAt:d.detected_at,analyzedAt:d.analyzed_at,rootCauseIdentifiedAt:d.root_cause_identified_at,resolvedAt:d.resolved_at,closedAt:d.closed_at,createdAt:d.created_at,updatedAt:d.updated_at}}var Qa,am=b(()=>{"use strict";m(Yi,"parseJsonArray");m(nm,"rowToProblem");Qa=class{static{m(this,"ProblemRepository")}db;constructor(e){this.db=e}async createProblem(e,t){let s=NT(),r=new Date().toISOString();return await this.db.execute(`INSERT INTO cmdb_problems (id, user_id, title, description, priority, category, linked_incident_ids, affected_asset_ids, affected_service_ids, detected_by, detection_method, workaround, detected_at, created_at, updated_at)
|
|
2209
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,[s,e,t.title,t.description??null,t.priority??"medium",t.category??null,JSON.stringify(t.linkedIncidentIds??[]),JSON.stringify(t.affectedAssetIds??[]),JSON.stringify(t.affectedServiceIds??[]),t.detectedBy??"manual",t.detectionMethod??null,t.workaround??null,r,r,r]),await this.getProblemById(e,s)}async getProblemById(e,t){let s=await this.db.queryOne("SELECT * FROM cmdb_problems WHERE id = ? AND user_id = ?",[t,e]);return!s&&t.length>=6&&t.length<=12&&/^[0-9a-f]+$/i.test(t)&&(s=await this.db.queryOne("SELECT * FROM cmdb_problems WHERE id LIKE ? AND user_id = ?",[t+"%",e])),s?nm(s):null}async listProblems(e,t){let s="SELECT * FROM cmdb_problems WHERE user_id = ?",r=[e];return t?.status&&(s+=" AND status = ?",r.push(t.status)),t?.priority&&(s+=" AND priority = ?",r.push(t.priority)),t?.category&&(s+=" AND category = ?",r.push(t.category)),t?.isKnownError!==void 0&&(s+=" AND is_known_error = ?",r.push(t.isKnownError?1:0)),s+=" ORDER BY CASE priority WHEN 'critical' THEN 0 WHEN 'high' THEN 1 WHEN 'medium' THEN 2 ELSE 3 END, detected_at DESC LIMIT ?",r.push(t?.limit??100),(await this.db.query(s,r)).map(nm)}async updateProblem(e,t,s){let r=await this.getProblemById(e,t);if(!r)return null;let i=[],n=[],a=new Date().toISOString(),o={title:"title",description:"description",priority:"priority",category:"category",rootCauseDescription:"root_cause_description",rootCauseCategory:"root_cause_category",workaround:"workaround",proposedFix:"proposed_fix",knownErrorDescription:"known_error_description",linkedChangeRequestId:"linked_change_request_id"};for(let[c,l]of Object.entries(o))c in s&&(i.push(`${l} = ?`),n.push(s[c]??null));return s.isKnownError!==void 0&&(i.push("is_known_error = ?"),n.push(s.isKnownError?1:0)),s.linkedIncidentIds&&(i.push("linked_incident_ids = ?"),n.push(JSON.stringify(s.linkedIncidentIds))),s.affectedAssetIds&&(i.push("affected_asset_ids = ?"),n.push(JSON.stringify(s.affectedAssetIds))),s.affectedServiceIds&&(i.push("affected_service_ids = ?"),n.push(JSON.stringify(s.affectedServiceIds))),s.status&&s.status!==r.status&&(i.push("status = ?"),n.push(s.status),s.status==="analyzing"&&!r.analyzedAt&&(i.push("analyzed_at = ?"),n.push(a)),s.status==="root_cause_identified"&&!r.rootCauseIdentifiedAt&&(i.push("root_cause_identified_at = ?"),n.push(a)),s.status==="resolved"&&!r.resolvedAt&&(i.push("resolved_at = ?"),n.push(a)),s.status==="closed"&&!r.closedAt&&(i.push("closed_at = ?"),n.push(a))),i.length===0?r:(i.push("updated_at = ?"),n.push(a),n.push(t,e),await this.db.execute(`UPDATE cmdb_problems SET ${i.join(", ")} WHERE id = ? AND user_id = ?`,n),this.getProblemById(e,t))}async appendAnalysisNotes(e,t,s){let r=new Date().toISOString(),i=`${r.slice(0,16)} ${s}`;await this.db.execute("UPDATE cmdb_problems SET analysis_notes =
|
|
2209
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,[s,e,t.title,t.description??null,t.priority??"medium",t.category??null,JSON.stringify(t.linkedIncidentIds??[]),JSON.stringify(t.affectedAssetIds??[]),JSON.stringify(t.affectedServiceIds??[]),t.detectedBy??"manual",t.detectionMethod??null,t.workaround??null,r,r,r]),await this.getProblemById(e,s)}async getProblemById(e,t){let s=await this.db.queryOne("SELECT * FROM cmdb_problems WHERE id = ? AND user_id = ?",[t,e]);return!s&&t.length>=6&&t.length<=12&&/^[0-9a-f]+$/i.test(t)&&(s=await this.db.queryOne("SELECT * FROM cmdb_problems WHERE id LIKE ? AND user_id = ?",[t+"%",e])),s?nm(s):null}async listProblems(e,t){let s="SELECT * FROM cmdb_problems WHERE user_id = ?",r=[e];return t?.status&&(s+=" AND status = ?",r.push(t.status)),t?.priority&&(s+=" AND priority = ?",r.push(t.priority)),t?.category&&(s+=" AND category = ?",r.push(t.category)),t?.isKnownError!==void 0&&(s+=" AND is_known_error = ?",r.push(t.isKnownError?1:0)),s+=" ORDER BY CASE priority WHEN 'critical' THEN 0 WHEN 'high' THEN 1 WHEN 'medium' THEN 2 ELSE 3 END, detected_at DESC LIMIT ?",r.push(t?.limit??100),(await this.db.query(s,r)).map(nm)}async updateProblem(e,t,s){let r=await this.getProblemById(e,t);if(!r)return null;let i=[],n=[],a=new Date().toISOString(),o={title:"title",description:"description",priority:"priority",category:"category",rootCauseDescription:"root_cause_description",rootCauseCategory:"root_cause_category",workaround:"workaround",proposedFix:"proposed_fix",knownErrorDescription:"known_error_description",linkedChangeRequestId:"linked_change_request_id"};for(let[c,l]of Object.entries(o))c in s&&(i.push(`${l} = ?`),n.push(s[c]??null));return s.isKnownError!==void 0&&(i.push("is_known_error = ?"),n.push(s.isKnownError?1:0)),s.linkedIncidentIds&&(i.push("linked_incident_ids = ?"),n.push(JSON.stringify(s.linkedIncidentIds))),s.affectedAssetIds&&(i.push("affected_asset_ids = ?"),n.push(JSON.stringify(s.affectedAssetIds))),s.affectedServiceIds&&(i.push("affected_service_ids = ?"),n.push(JSON.stringify(s.affectedServiceIds))),s.status&&s.status!==r.status&&(i.push("status = ?"),n.push(s.status),s.status==="analyzing"&&!r.analyzedAt&&(i.push("analyzed_at = ?"),n.push(a)),s.status==="root_cause_identified"&&!r.rootCauseIdentifiedAt&&(i.push("root_cause_identified_at = ?"),n.push(a)),s.status==="resolved"&&!r.resolvedAt&&(i.push("resolved_at = ?"),n.push(a)),s.status==="closed"&&!r.closedAt&&(i.push("closed_at = ?"),n.push(a))),i.length===0?r:(i.push("updated_at = ?"),n.push(a),n.push(t,e),await this.db.execute(`UPDATE cmdb_problems SET ${i.join(", ")} WHERE id = ? AND user_id = ?`,n),this.getProblemById(e,t))}async appendAnalysisNotes(e,t,s){let r=new Date().toISOString(),i=`${r.slice(0,16)} ${s}`;await this.db.execute("UPDATE cmdb_problems SET analysis_notes = CASE WHEN analysis_notes IS NULL OR analysis_notes = '' THEN ? ELSE concat(analysis_notes, ?) END, updated_at = ? WHERE id = ? AND user_id = ?",[i,`
|
|
2210
2210
|
---
|
|
2211
2211
|
${i}`,r,t,e])}async linkIncident(e,t,s){let r=await this.getProblemById(e,t);if(!r)return null;if(r.linkedIncidentIds.includes(s))return r;let i=[...r.linkedIncidentIds,s];return await this.db.execute("UPDATE cmdb_problems SET linked_incident_ids = ?, updated_at = ? WHERE id = ? AND user_id = ?",[JSON.stringify(i),new Date().toISOString(),t,e]),await this.db.execute("UPDATE cmdb_incidents SET problem_id = ? WHERE id = ? AND user_id = ?",[t,s,e]),this.getProblemById(e,t)}async unlinkIncident(e,t,s){let r=await this.getProblemById(e,t);if(!r)return null;let i=r.linkedIncidentIds.filter(n=>n!==s);return await this.db.execute("UPDATE cmdb_problems SET linked_incident_ids = ?, updated_at = ? WHERE id = ? AND user_id = ?",[JSON.stringify(i),new Date().toISOString(),t,e]),await this.db.execute("UPDATE cmdb_incidents SET problem_id = NULL WHERE id = ? AND user_id = ?",[s,e]),this.getProblemById(e,t)}async linkChangeRequest(e,t,s){let r=new Date().toISOString();return await this.db.execute("UPDATE cmdb_problems SET linked_change_request_id = ?, updated_at = ? WHERE id = ? AND user_id = ?",[s,r,t,e]),await this.db.execute("UPDATE cmdb_change_requests SET linked_problem_id = ? WHERE id = ? AND user_id = ?",[t,s,e]),this.getProblemById(e,t)}async findProblemForIncident(e,t){let s=await this.db.queryOne("SELECT problem_id FROM cmdb_incidents WHERE id = ? AND user_id = ?",[t,e]);return s&&s.problem_id?this.getProblemById(e,s.problem_id):null}async detectPatterns(e,t){let s=t?.windowDays??7,r=t?.minIncidents??3,i=new Date(Date.now()-s*24*60*6e4).toISOString(),n=await this.db.query(`SELECT id, title, affected_asset_ids, affected_service_ids, created_at, problem_id
|
|
2212
2212
|
FROM cmdb_incidents WHERE user_id = ? AND problem_id IS NULL AND status != 'cancelled' AND created_at >= ?
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><meta name="robots" content="noindex"/><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[2051,[],\"OutletBoundary\"]\n9:I[6658,[],\"AsyncMetadataOutlet\"]\nb:I[2051,[],\"ViewportBoundary\"]\nd:I[2051,[],\"MetadataBoundary\"]\ne:\"$Sreact.suspense\"\n10:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",[\"$\",\"$L9\",null,{\"promise\":\"$@a\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],null],[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$e\",null,{\"fallback\":null,\"children\":\"$Lf\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"a:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"f:\"$a:metadata\"\n"])</script></body></html>
|
package/bundle/web-ui/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><meta name="robots" content="noindex"/><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[2051,[],\"OutletBoundary\"]\n9:I[6658,[],\"AsyncMetadataOutlet\"]\nb:I[2051,[],\"ViewportBoundary\"]\nd:I[2051,[],\"MetadataBoundary\"]\ne:\"$Sreact.suspense\"\n10:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",[\"$\",\"$L9\",null,{\"promise\":\"$@a\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],null],[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$e\",null,{\"fallback\":null,\"children\":\"$Lf\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"a:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"f:\"$a:metadata\"\n"])</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__BUILD_MANIFEST=function(e,r,t){return{__rewrites:{afterFiles:[],beforeFiles:[],fallback:[]},__routerFilterStatic:{numItems:9,errorRate:1e-4,numBits:173,numHashes:14,bitArray:[0,0,e,1,1,r,e,r,e,r,r,e,r,e,r,r,r,e,r,e,e,e,r,e,e,e,e,r,e,e,r,e,r,e,r,e,r,e,e,r,e,r,r,e,e,r,r,r,e,e,e,e,e,r,e,e,e,r,e,r,e,r,r,r,r,r,r,r,e,r,r,r,r,e,e,e,e,e,e,e,e,e,e,r,r,r,e,r,r,r,r,e,e,r,e,r,e,r,r,e,e,r,e,e,r,e,r,r,r,r,r,e,r,e,r,e,r,e,e,e,e,r,r,e,r,r,r,r,e,e,e,r,r,e,r,r,e,e,r,r,e,r,r,e,e,e,r,r,e,e,r,r,e,e,r,r,e,e,e,e,r,e,r,e,r,e,e,r,r,r,r,e,r]},__routerFilterDynamic:{numItems:e,errorRate:1e-4,numBits:e,numHashes:null,bitArray:[]},"/_error":["static/chunks/pages/_error-01ab52c470df0174.js"],sortedPages:["/_app","/_error"]}}(0,1,1e-4),self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/188-dca4c90c7e992695.js" async=""></script><script src="/alfred/_next/static/chunks/app/chat/page-ad329c19c177e3c3.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[1740,[\"188\",\"static/chunks/188-dca4c90c7e992695.js\",\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"457\",\"static/chunks/app/chat/page-ad329c19c177e3c3.js\"],\"ChatPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"chat\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"chat\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"chat\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","chat",""],"i":false,"f":[[["",{"children":["chat",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["chat",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/cmdb/page-ed0d73909ebd5366.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[8805,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"225\",\"static/chunks/app/cmdb/page-ed0d73909ebd5366.js\"],\"CmdbPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"cmdb\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"cmdb\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"cmdb\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","cmdb",""],"i":false,"f":[[["",{"children":["cmdb",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["cmdb",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/dashboard/page-564cf0447da66714.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[9772,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"105\",\"static/chunks/app/dashboard/page-564cf0447da66714.js\"],\"DashboardPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"dashboard\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"dashboard\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"dashboard\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","dashboard",""],"i":false,"f":[[["",{"children":["dashboard",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["dashboard",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/docs/page-e913dafa1ae8f5cd.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[7515,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"40\",\"static/chunks/app/docs/page-e913dafa1ae8f5cd.js\"],\"InfraDocsPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"docs\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"docs\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"docs\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","docs",""],"i":false,"f":[[["",{"children":["docs",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["docs",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
package/bundle/web-ui/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/188-dca4c90c7e992695.js" async=""></script><script src="/alfred/_next/static/chunks/app/page-a39e3cc9b1dd3699.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[3339,[],\"ClientPageRoot\"]\n8:I[8419,[\"188\",\"static/chunks/188-dca4c90c7e992695.js\",\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"974\",\"static/chunks/app/page-a39e3cc9b1dd3699.js\"],\"default\"]\nb:I[2051,[],\"OutletBoundary\"]\nd:I[6658,[],\"AsyncMetadataOutlet\"]\nf:I[2051,[],\"ViewportBoundary\"]\n11:I[2051,[],\"MetadataBoundary\"]\n12:\"$Sreact.suspense\"\n14:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{\"Component\":\"$8\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@9\",\"$@a\"]}],null,[\"$\",\"$Lb\",null,{\"children\":[\"$Lc\",[\"$\",\"$Ld\",null,{\"promise\":\"$@e\"}]]}]]}],{},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lf\",null,{\"children\":\"$L10\"}],null],[\"$\",\"$L11\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$12\",null,{\"fallback\":null,\"children\":\"$L13\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$14\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:{}\na:\"$0:f:0:1:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"10:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\nc:null\n"])</script><script>self.__next_f.push([1,"e:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"13:\"$e:metadata\"\n"])</script></body></html>
|
package/bundle/web-ui/index.txt
CHANGED
|
@@ -13,7 +13,7 @@ f:I[2051,[],"ViewportBoundary"]
|
|
|
13
13
|
12:"$Sreact.suspense"
|
|
14
14
|
14:I[7698,[],""]
|
|
15
15
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
16
|
-
0:{"P":null,"b":"
|
|
16
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","searchParams":{},"params":{},"promises":["$@9","$@a"]}],null,["$","$Lb",null,{"children":["$Lc",["$","$Ld",null,{"promise":"$@e"}]]}]]}],{},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lf",null,{"children":"$L10"}],null],["$","$L11",null,{"children":["$","div",null,{"hidden":true,"children":["$","$12",null,{"fallback":null,"children":"$L13"}]}]}]]}],false]],"m":"$undefined","G":["$14",[]],"s":false,"S":true}
|
|
17
17
|
9:{}
|
|
18
18
|
a:"$0:f:0:1:2:children:1:props:children:0:props:params"
|
|
19
19
|
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/itsm/page-f43fac31d9f666d8.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[3059,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"130\",\"static/chunks/app/itsm/page-f43fac31d9f666d8.js\"],\"ItsmPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"itsm\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"itsm\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"itsm\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","itsm",""],"i":false,"f":[[["",{"children":["itsm",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["itsm",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/knowledge/page-1843cb3d4332bb50.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[5319,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"49\",\"static/chunks/app/knowledge/page-1843cb3d4332bb50.js\"],\"KnowledgeGraphPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"knowledge\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"knowledge\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"knowledge\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","knowledge",""],"i":false,"f":[[["",{"children":["knowledge",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["knowledge",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--u1gibSuNBloXvo3T_5z3H--><html lang="de"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/alfred/_next/static/css/478dba65e2308f60.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js"/><script src="/alfred/_next/static/chunks/8e6518bb-ac69cad76942bec4.js" async=""></script><script src="/alfred/_next/static/chunks/743-8d9b5b61ab50b7b3.js" async=""></script><script src="/alfred/_next/static/chunks/main-app-bf91f7268c1fdab4.js" async=""></script><script src="/alfred/_next/static/chunks/719-36818e9c5aeae57f.js" async=""></script><script src="/alfred/_next/static/chunks/app/layout-8161926c22b4331d.js" async=""></script><script src="/alfred/_next/static/chunks/app/settings/page-2478b824d09b210a.js" async=""></script><title>Alfred AI</title><meta name="description" content="Self-hosted AI Assistant"/><script src="/alfred/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div class="flex items-center justify-center h-screen bg-[#0a0a0a]"><div class="text-gray-400">Verbinde...</div></div><script src="/alfred/_next/static/chunks/webpack-ed962dcdbf6a9070.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[8719,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"ConfigProvider\"]\n3:I[6117,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"AuthGate\"]\n4:I[4314,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"177\",\"static/chunks/app/layout-8161926c22b4331d.js\"],\"Sidebar\"]\n5:I[8954,[],\"\"]\n6:I[5640,[],\"\"]\n7:I[8171,[\"719\",\"static/chunks/719-36818e9c5aeae57f.js\",\"662\",\"static/chunks/app/settings/page-2478b824d09b210a.js\"],\"SettingsPage\"]\n8:I[2051,[],\"OutletBoundary\"]\na:I[6658,[],\"AsyncMetadataOutlet\"]\nc:I[2051,[],\"ViewportBoundary\"]\ne:I[2051,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[7698,[],\"\"]\n:HL[\"/alfred/_next/static/css/478dba65e2308f60.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u1gibSuNBloXvo3T-5z3H\",\"p\":\"/alfred\",\"c\":[\"\",\"settings\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"settings\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/alfred/_next/static/css/478dba65e2308f60.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"de\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-full\",\"children\":[[\"$\",\"$L4\",null,{}],[\"$\",\"main\",null,{\"className\":\"flex-1 overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]}]]}],{\"children\":[\"settings\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],null],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"b:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Alfred AI\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Self-hosted AI Assistant\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ e:I[2051,[],"MetadataBoundary"]
|
|
|
12
12
|
f:"$Sreact.suspense"
|
|
13
13
|
11:I[7698,[],""]
|
|
14
14
|
:HL["/alfred/_next/static/css/478dba65e2308f60.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"u1gibSuNBloXvo3T-5z3H","p":"/alfred","c":["","settings",""],"i":false,"f":[[["",{"children":["settings",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/alfred/_next/static/css/478dba65e2308f60.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"de","children":["$","body",null,{"className":"bg-[#0a0a0a] text-gray-200 h-screen overflow-hidden","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","div",null,{"className":"flex h-full","children":[["$","$L4",null,{}],["$","main",null,{"className":"flex-1 overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]}]]}],{"children":["settings",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L7",null,{}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],null],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
17
17
|
9:null
|
|
18
18
|
b:{"metadata":[["$","title","0",{"children":"Alfred AI"}],["$","meta","1",{"name":"description","content":"Self-hosted AI Assistant"}]],"error":null,"digest":"$undefined"}
|
package/package.json
CHANGED