@lukeashford/aurelius 3.7.0 → 3.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +11 -28
- package/dist/index.d.ts +11 -28
- package/dist/index.js +36 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +36 -24
- package/dist/index.mjs.map +1 -1
- package/llms.md +1 -5
- package/package.json +1 -1
package/llms.md
CHANGED
|
@@ -260,7 +260,7 @@ navigate for groups).
|
|
|
260
260
|
- **MessageActionsConfig.onRetry**: * Called when user retries an assistant message (creates a branch)
|
|
261
261
|
- **MessageActionsConfig.showCopy**: * Whether to show the copy button @default true
|
|
262
262
|
- **variant**: * Whether the message is from the user or the assistant
|
|
263
|
-
- **content**: * The message content (supports Markdown)
|
|
263
|
+
- **content**: * The message content (supports Markdown if string)
|
|
264
264
|
- **isStreaming**: * Whether the message is currently being streamed (shows cursor)
|
|
265
265
|
- **branchInfo**: * Branch navigation info (shows branch indicator if provided and total > 1)
|
|
266
266
|
- **actions**: * Actions configuration (shows action bar if provided)
|
|
@@ -418,10 +418,6 @@ Features:
|
|
|
418
418
|
Artifacts are supplied as a tree of ArtifactNode objects via the
|
|
419
419
|
artifactNodes prop.
|
|
420
420
|
|
|
421
|
-
- **ChatMessage.id**: * Unique identifier for the message
|
|
422
|
-
- **ChatMessage.variant**: * Whether the message is from the user or the assistant
|
|
423
|
-
- **ChatMessage.content**: * Message content (Markdown supported)
|
|
424
|
-
- **ChatMessage.isStreaming**: * Whether the message is currently streaming
|
|
425
421
|
- **Conversation.id**: * Unique identifier for the conversation
|
|
426
422
|
- **Conversation.title**: * Title shown as the first line of the row. Editable via the rename affordance.
|
|
427
423
|
- **Conversation.project**: * Project this conversation belongs to. Shown as the second line of the row and collected into the project filter in the history panel.
|
package/package.json
CHANGED