Commit ·
d8da231
1
Parent(s): 5cfd5d6
Update: Change default bot names to cyberpunk handles
Browse files- api.py +2 -2
- frontend/static/index.html +1 -1
api.py
CHANGED
|
@@ -82,8 +82,8 @@ def _game_state() -> dict:
|
|
| 82 |
|
| 83 |
|
| 84 |
BOT_NAMES = [
|
| 85 |
-
"
|
| 86 |
-
"
|
| 87 |
]
|
| 88 |
|
| 89 |
|
|
|
|
| 82 |
|
| 83 |
|
| 84 |
BOT_NAMES = [
|
| 85 |
+
"Vex", "Nyx", "Kael", "Zara",
|
| 86 |
+
"Cypher", "Helix", "Apex", "Blaze",
|
| 87 |
]
|
| 88 |
|
| 89 |
|
frontend/static/index.html
CHANGED
|
@@ -1319,7 +1319,7 @@ const AGENT_COLORS = {
|
|
| 1319 |
animate();
|
| 1320 |
})();
|
| 1321 |
|
| 1322 |
-
const BOT_NAMES = ["
|
| 1323 |
let agentNames = [...BOT_NAMES];
|
| 1324 |
let agentSystemPrompts = {};
|
| 1325 |
let activePromptAgent = 'agent_0';
|
|
|
|
| 1319 |
animate();
|
| 1320 |
})();
|
| 1321 |
|
| 1322 |
+
const BOT_NAMES = ["Vex", "Nyx", "Kael", "Zara", "Cypher", "Helix", "Apex", "Blaze"];
|
| 1323 |
let agentNames = [...BOT_NAMES];
|
| 1324 |
let agentSystemPrompts = {};
|
| 1325 |
let activePromptAgent = 'agent_0';
|