Skip to content

Commit

Permalink
remove no need code
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydzhou committed Sep 3, 2024
1 parent 7180ed9 commit 6ab6b3d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/client/platforms/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ export class ClaudeApi implements LLMApi {
.getAsTools(
useChatStore.getState().currentSession().mask?.plugin as string[],
);
console.log("getAsTools", tools, funcs);
return stream(
path,
requestBody,
Expand Down
1 change: 0 additions & 1 deletion app/client/platforms/moonshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ export class MoonshotApi implements LLMApi {
.getAsTools(
useChatStore.getState().currentSession().mask?.plugin as string[],
);
console.log("getAsTools", tools, funcs);
return stream(
chatPath,
requestPayload,
Expand Down
1 change: 0 additions & 1 deletion app/store/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,6 @@ export const useChatStore = createPersistStore(
});
},
onAfterTool(tool: ChatMessageTool) {
console.log("onAfterTool", botMessage);
botMessage?.tools?.forEach((t, i, tools) => {
if (tool.id == t.id) {
tools[i] = { ...tool };
Expand Down

0 comments on commit 6ab6b3d

Please sign in to comment.