Diomedes Git commited on
Commit
33420ac
·
1 Parent(s): 295cfbe

fRoNtEnD iS mY pAsSiOn (cont.)

Browse files
Files changed (2) hide show
  1. README.md +13 -12
  2. src/gradio/styles.css +3 -2
README.md CHANGED
@@ -49,6 +49,10 @@ short_description: A gathering of guides, a council of counsels
49
  0 6px 12px rgba(0,0,0,0.04);
50
  }
51
 
 
 
 
 
52
  /* Title */
53
  .corvid-banner-inner h1 {
54
  font-size: 1.9rem;
@@ -89,11 +93,15 @@ Four specialised AI agents with **distinct epistemic roles** debate questions us
89
  - **Evolution**: Future discussions build on accumulated knowledge
90
 
91
 
92
- ## Why It's Different
93
- - **Distinct epistemic roles**: Each agent uses specialized tools
94
- - **Structured dialectic**: Reduces bias, promotes steelmanning
95
- - **Persistent memory**: Knowledge accumulates over time
96
- - **Tool-personality mapping**: Raven verifies news, Corvus searches literature, etc.
 
 
 
 
97
 
98
 
99
  ### Modes
@@ -138,13 +146,6 @@ Most AI assistants are stateless. cluas_huginn remembers, learns, and builds kno
138
 
139
 
140
 
141
- ## Key Innovations / What Makes This Different
142
- 1. Unified inheritance architecture
143
- 2. Shared epistemic principles with "Four Temperament" character differentiation
144
- 3. Tool-use heuristics per character, guided by personality
145
- 4. Steelmanning and collaborative disagreement built-in
146
- 5. Structured dialectic reduces bias (thesis/antithesis/synthesis)
147
- 6. Persistent memory: knowledge accumulates over time
148
 
149
 
150
 
 
49
  0 6px 12px rgba(0,0,0,0.04);
50
  }
51
 
52
+ .corvid-banner-inner h1, .corvid-banner-inner h2 {
53
+ text-shadow: 0 1px 2px rgba(0,0,0,0.1);
54
+ }
55
+
56
  /* Title */
57
  .corvid-banner-inner h1 {
58
  font-size: 1.9rem;
 
93
  - **Evolution**: Future discussions build on accumulated knowledge
94
 
95
 
96
+
97
+ ## Key Innovations / What Makes This Different
98
+ 1. **Unified inheritance** architecture underpinning multi-agent system
99
+ 2. **Shared epistemic principles** but **distinct epistemic roles** for each agent
100
+ 3. **"Four Temperament"** character differentiation
101
+ 4. **Tool-use heuristics per character**, guided by each character’s personality
102
+ 5. **Steelmanning** and **collaborative disagreement** built-in
103
+ 6. **Structured dialectic** (thesis → antithesis → synthesis) to reduce bias
104
+ 7. **Persistent memory** enabling knowledge accumulation over time
105
 
106
 
107
  ### Modes
 
146
 
147
 
148
 
 
 
 
 
 
 
 
149
 
150
 
151
 
src/gradio/styles.css CHANGED
@@ -57,6 +57,7 @@ button:hover {
57
  /* CHAT LAYOUT */
58
  #chat-container {
59
  max-width: 720px;
 
60
  margin: 0 auto;
61
  padding: 16px;
62
  overflow-y: auto;
@@ -78,9 +79,9 @@ button:hover {
78
 
79
  /* Avatar */
80
  .chat-avatar {
 
81
  width: 40px;
82
  height: 40px;
83
- border-radius: 50%;
84
  object-fit: cover;
85
  }
86
 
@@ -123,7 +124,7 @@ button:hover {
123
  .chat-message.corvus .chat-bubble { border-left: 3px solid var(--corvus-accent); }
124
  .chat-message.magpie .chat-bubble { border-left: 3px solid var(--magpie-accent); }
125
  .chat-message.raven .chat-bubble { border-left: 3px solid var(--raven-accent); }
126
- chat-message.crow .chat-bubble { border-left: 3px solid var(--crow-accent); }
127
 
128
  .chat-message.assistant .chat-name { color: #666; }
129
 
 
57
  /* CHAT LAYOUT */
58
  #chat-container {
59
  max-width: 720px;
60
+ max-height: 600px;
61
  margin: 0 auto;
62
  padding: 16px;
63
  overflow-y: auto;
 
79
 
80
  /* Avatar */
81
  .chat-avatar {
82
+ border-radius: 50%;
83
  width: 40px;
84
  height: 40px;
 
85
  object-fit: cover;
86
  }
87
 
 
124
  .chat-message.corvus .chat-bubble { border-left: 3px solid var(--corvus-accent); }
125
  .chat-message.magpie .chat-bubble { border-left: 3px solid var(--magpie-accent); }
126
  .chat-message.raven .chat-bubble { border-left: 3px solid var(--raven-accent); }
127
+ .chat-message.crow .chat-bubble { border-left: 3px solid var(--crow-accent); }
128
 
129
  .chat-message.assistant .chat-name { color: #666; }
130