Commit
·
a32922f
1
Parent(s):
1241d10
Final Branding: Update all remaining references to NexusGraph AI
Browse files- frontend/analytics.html +1 -1
- frontend/script.js +1 -1
- main.py +1 -1
frontend/analytics.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8" />
|
| 6 |
-
<title>
|
| 7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 8 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
| 9 |
|
|
|
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<meta charset="UTF-8" />
|
| 6 |
+
<title>NexusGraph AI Analytics</title>
|
| 7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 8 |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
| 9 |
|
frontend/script.js
CHANGED
|
@@ -239,7 +239,7 @@ function loadSession(item) {
|
|
| 239 |
|
| 240 |
function newChat() {
|
| 241 |
document.getElementById("chatContainer").innerHTML = "";
|
| 242 |
-
addMessage("ai", "Hello! I am
|
| 243 |
threadId = crypto.randomUUID();
|
| 244 |
sessionStorage.setItem("rag_thread_id", threadId);
|
| 245 |
}
|
|
|
|
| 239 |
|
| 240 |
function newChat() {
|
| 241 |
document.getElementById("chatContainer").innerHTML = "";
|
| 242 |
+
addMessage("ai", "Hello! I am NexusGraph AI. Upload a document or ask me anything.");
|
| 243 |
threadId = crypto.randomUUID();
|
| 244 |
sessionStorage.setItem("rag_thread_id", threadId);
|
| 245 |
}
|
main.py
CHANGED
|
@@ -28,7 +28,7 @@ CACHE_TTL = 300
|
|
| 28 |
# =========================================================
|
| 29 |
# APP
|
| 30 |
# =========================================================
|
| 31 |
-
app = FastAPI(title="
|
| 32 |
|
| 33 |
app.add_middleware(
|
| 34 |
CORSMiddleware,
|
|
|
|
| 28 |
# =========================================================
|
| 29 |
# APP
|
| 30 |
# =========================================================
|
| 31 |
+
app = FastAPI(title="NexusGraph AI (Enterprise RAG)")
|
| 32 |
|
| 33 |
app.add_middleware(
|
| 34 |
CORSMiddleware,
|