17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
/**
|
|
*
|
|
* BADGES & INDICATORS
|
|
*
|
|
* Small visual indicators for status and metadata.
|
|
*
|
|
*/
|
|
|
|
/** Badge displaying chat statistics (tokens, timing). */
|
|
export { default as BadgeChatStatistic } from './BadgeChatStatistic.svelte';
|
|
|
|
/** Generic info badge with optional tooltip and click handler. */
|
|
export { default as BadgeInfo } from './BadgeInfo.svelte';
|
|
|
|
/** Badge indicating model modality (vision, audio, tools). */
|
|
export { default as BadgeModality } from './BadgeModality.svelte';
|