Skip to content

Commit 6ab6b3d

Browse files
committed
remove no need code
1 parent 7180ed9 commit 6ab6b3d

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

app/client/platforms/anthropic.ts

-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ export class ClaudeApi implements LLMApi {
205205
.getAsTools(
206206
useChatStore.getState().currentSession().mask?.plugin as string[],
207207
);
208-
console.log("getAsTools", tools, funcs);
209208
return stream(
210209
path,
211210
requestBody,

app/client/platforms/moonshot.ts

-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ export class MoonshotApi implements LLMApi {
127127
.getAsTools(
128128
useChatStore.getState().currentSession().mask?.plugin as string[],
129129
);
130-
console.log("getAsTools", tools, funcs);
131130
return stream(
132131
chatPath,
133132
requestPayload,

app/store/chat.ts

-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,6 @@ export const useChatStore = createPersistStore(
410410
});
411411
},
412412
onAfterTool(tool: ChatMessageTool) {
413-
console.log("onAfterTool", botMessage);
414413
botMessage?.tools?.forEach((t, i, tools) => {
415414
if (tool.id == t.id) {
416415
tools[i] = { ...tool };

0 commit comments

Comments
 (0)