Spaces:
Running
Running
NeonClary Cursor commited on
Commit ·
6a3a7e1
1
Parent(s): 478df90
rename: 'CCAI Vibe Demo' -> 'Collaborative Conversational AI (CCAI) Demo'
Browse filesUpdates the user-visible product name everywhere it surfaced as a string:
README frontmatter + H1, FastAPI app title, header H1, prompt-catalog
download banner, and the additive-styles file header. No behavior
change.
Co-authored-by: Cursor <cursoragent@cursor.com>
- README.md +2 -2
- backend/app/main.py +5 -1
- frontend/src/components/Header.js +1 -1
- frontend/src/components/PromptCatalogModal.js +1 -1
- frontend/src/styles/ccai.css +2 -1
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🤝
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
|
@@ -11,7 +11,7 @@ hf_oauth_scopes:
|
|
| 11 |
pinned: false
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
A demo of **Collaborative Conversational AI (CCAI)** - Neon.ai's patented
|
| 17 |
group-discussion technology. Up to 9 participants (any mix of AI personas,
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Collaborative Conversational AI (CCAI) Demo
|
| 3 |
emoji: 🤝
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
|
|
|
| 11 |
pinned: false
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# Collaborative Conversational AI (CCAI) Demo
|
| 15 |
|
| 16 |
A demo of **Collaborative Conversational AI (CCAI)** - Neon.ai's patented
|
| 17 |
group-discussion technology. Up to 9 participants (any mix of AI personas,
|
backend/app/main.py
CHANGED
|
@@ -41,7 +41,11 @@ async def lifespan(app: FastAPI):
|
|
| 41 |
await close_shared_client()
|
| 42 |
|
| 43 |
|
| 44 |
-
app = FastAPI(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
app.add_middleware(
|
| 47 |
SessionMiddleware,
|
|
|
|
| 41 |
await close_shared_client()
|
| 42 |
|
| 43 |
|
| 44 |
+
app = FastAPI(
|
| 45 |
+
title="Collaborative Conversational AI (CCAI) Demo",
|
| 46 |
+
version="1.0.0",
|
| 47 |
+
lifespan=lifespan,
|
| 48 |
+
)
|
| 49 |
|
| 50 |
app.add_middleware(
|
| 51 |
SessionMiddleware,
|
frontend/src/components/Header.js
CHANGED
|
@@ -36,7 +36,7 @@ export default function Header({
|
|
| 36 |
<h1 className="app-title">
|
| 37 |
<a href="https://www.neon.ai/" target="_blank" rel="noopener noreferrer" className="app-title-link">
|
| 38 |
Neon.ai
|
| 39 |
-
</a> -
|
| 40 |
</h1>
|
| 41 |
</div>
|
| 42 |
<div className="header-right">
|
|
|
|
| 36 |
<h1 className="app-title">
|
| 37 |
<a href="https://www.neon.ai/" target="_blank" rel="noopener noreferrer" className="app-title-link">
|
| 38 |
Neon.ai
|
| 39 |
+
</a> - Collaborative Conversational AI (CCAI) Demo
|
| 40 |
</h1>
|
| 41 |
</div>
|
| 42 |
<div className="header-right">
|
frontend/src/components/PromptCatalogModal.js
CHANGED
|
@@ -157,7 +157,7 @@ function renderCatalogAsText(catalog) {
|
|
| 157 |
const lines = [];
|
| 158 |
const banner = '═'.repeat(64);
|
| 159 |
lines.push(banner);
|
| 160 |
-
lines.push('
|
| 161 |
lines.push(`Generated: ${now}`);
|
| 162 |
lines.push(banner);
|
| 163 |
lines.push('');
|
|
|
|
| 157 |
const lines = [];
|
| 158 |
const banner = '═'.repeat(64);
|
| 159 |
lines.push(banner);
|
| 160 |
+
lines.push('Collaborative Conversational AI (CCAI) Demo — Current chat prompts');
|
| 161 |
lines.push(`Generated: ${now}`);
|
| 162 |
lines.push(banner);
|
| 163 |
lines.push('');
|
frontend/src/styles/ccai.css
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
/* ════════════════════════════════════════════════════════════════
|
| 2 |
-
|
|
|
|
| 3 |
Anything new (multi-participant sidebar, dropdown, expert modal,
|
| 4 |
table view, orchestrator banners, failsafe banner) lives here.
|
| 5 |
════════════════════════════════════════════════════════════════ */
|
|
|
|
| 1 |
/* ════════════════════════════════════════════════════════════════
|
| 2 |
+
Collaborative Conversational AI (CCAI) Demo - additive styles on
|
| 3 |
+
top of LLMChats3 baseline.
|
| 4 |
Anything new (multi-participant sidebar, dropdown, expert modal,
|
| 5 |
table view, orchestrator banners, failsafe banner) lives here.
|
| 6 |
════════════════════════════════════════════════════════════════ */
|