fix: add model and provider info to quick action messages

Pass model and provider information through chat components to include in quick action messages. This fixes the issue of defaulting to anthropic model.
This commit is contained in:
KevIsDev
2025-05-28 12:32:00 +01:00
parent 12f9f4dcdc
commit 0017d29154
4 changed files with 34 additions and 10 deletions

View File

@@ -359,6 +359,8 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
append={append}
chatMode={chatMode}
setChatMode={setChatMode}
provider={provider}
model={model}
/>
) : null;
}}