GET /consciousness/thoughts
Get recent conscious thoughts.Request
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 20 | Max thoughts to return |
offset | number | 0 | Thoughts to skip |
tone | string | - | Filter by tone |
since | number | - | Only after timestamp |
minConfidence | number | - | Minimum confidence |
Response
Thought Fields
| Field | Type | Description |
|---|---|---|
_id | string | Thought ID |
content | string | The synthesized thought |
seeds | array | Input sources that contributed |
tone | string | Emotional tone (curious, excited, concerned, neutral, reflective) |
confidence | number | Confidence score (0-1) |
isBrilliant | boolean | Whether this is a moment of brilliance |
timestamp | number | Creation timestamp |
GET /consciousness/brilliant
Get only moments of brilliance.Request
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 10 | Max thoughts to return |
since | number | - | Only after timestamp |
Response
Brilliance Factors
| Field | Type | Description |
|---|---|---|
seedCount | number | Number of contributing seeds |
avgSeedImportance | number | Average importance of seeds |
commonEntities | array | Shared entities across seeds |
novelty | number | How novel/unique this insight is |
GET /consciousness/stats
Get consciousness system statistics.Request
Response
POST /consciousness/process
Generate a conscious thought from inputs.Request
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
seeds | array | Yes | Input seeds for synthesis |
forceProcess | boolean | No | Process even if below thresholds |
minImportance | number | No | Override minimum importance filter |
Seed Object
| Field | Type | Required | Description |
|---|---|---|---|
content | string | Yes | Seed content |
importance | number | Yes | Importance score (0-1) |
entities | array | No | Extracted entities |
source | string | No | Where this came from |
Response
Response (No Thought Generated)
POST /consciousness/reflect
Trigger consciousness self-reflection.Request
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
lookback | string | No | Time window (1h, 24h, 7d) |
focus | string | No | Topic to focus reflection on |