This commit is contained in:
2026-02-19 18:05:50 +00:00
parent 9870fa7ae8
commit 6a83342013
38 changed files with 1459 additions and 267 deletions
@@ -13,9 +13,9 @@ export type Attachment =
type EmbeddableChatProps = {
chat: ReturnType<typeof useClaude>;
provider?: 'claude' | 'opencode';
provider?: 'claude' | 'opencode' | 'pi-mono';
availableModels?: ModelOption[];
onProviderChange?: (provider: 'claude' | 'opencode') => void;
onProviderChange?: (provider: 'claude' | 'opencode' | 'pi-mono') => void;
onBeforeSend?: (text: string) => boolean | Promise<boolean>;
commandFeedback?: string | null;
defaultInput?: string;