mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-03 17:27:37 +08:00
feat: cute spinners
This commit is contained in:
@@ -4,6 +4,12 @@ export interface ActiveTool {
|
||||
context?: string
|
||||
}
|
||||
|
||||
export interface ActivityItem {
|
||||
id: number
|
||||
text: string
|
||||
tone: 'error' | 'info' | 'warn'
|
||||
}
|
||||
|
||||
export interface ApprovalReq {
|
||||
command: string
|
||||
description: string
|
||||
@@ -53,6 +59,19 @@ export interface SecretReq {
|
||||
requestId: string
|
||||
}
|
||||
|
||||
export type PasteKind = 'code' | 'log' | 'text'
|
||||
export type PasteMode = 'attach' | 'excerpt' | 'inline'
|
||||
|
||||
export interface PendingPaste {
|
||||
charCount: number
|
||||
createdAt: number
|
||||
id: number
|
||||
kind: PasteKind
|
||||
lineCount: number
|
||||
mode: PasteMode
|
||||
text: string
|
||||
}
|
||||
|
||||
/** From `commands.catalog` — mirrors hermes_cli.commands COMMANDS + SUBCOMMANDS + skills. */
|
||||
export interface SlashCatalog {
|
||||
canon: Record<string, string>
|
||||
|
||||
Reference in New Issue
Block a user