mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
rm console.logs
This commit is contained in:
parent
b5dbd42eed
commit
4061e6382a
2 changed files with 0 additions and 5 deletions
|
|
@ -1292,8 +1292,6 @@ const ChatBubble = ({ chatMessage, isLoading, messageIdx }: ChatBubbleProps) =>
|
|||
|
||||
const role = chatMessage.role
|
||||
|
||||
console.log('ROLE', role)
|
||||
|
||||
if (role === 'user') {
|
||||
return <UserMessageComponent
|
||||
chatMessage={chatMessage}
|
||||
|
|
|
|||
|
|
@ -303,9 +303,6 @@ const sendAnthropicChat = ({ messages: messages_, providerName, onText, onFinalM
|
|||
|
||||
const { messages, separateSystemMessageStr } = prepareMessages({ messages: messages_, aiInstructions, supportsSystemMessage, supportsTools, supportsAnthropicReasoningSignature: true })
|
||||
|
||||
|
||||
console.log('MESSAGES!!!!', JSON.stringify(messages, null, 5))
|
||||
|
||||
const thisConfig = settingsOfProvider.anthropic
|
||||
const anthropic = new Anthropic({ apiKey: thisConfig.apiKey, dangerouslyAllowBrowser: true });
|
||||
const tools = ((tools_?.length ?? 0) !== 0) ? tools_?.map(tool => toAnthropicTool(tool)) : undefined
|
||||
|
|
|
|||
Loading…
Reference in a new issue