Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jirispilka committed Jan 23, 2025
1 parent 263447a commit d311994
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 74 deletions.
3 changes: 1 addition & 2 deletions src/frontend/mcpClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,13 @@ export class MCPClient {
* Call the tool and return the response.
*/
private async handleToolCall(content: ToolUseBlock, messages: MessageParam[], toolCallCount = 0): Promise<MessageParam[]> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any

messages.push({
role: 'assistant',
content: [
{ id: content.id, input: content.input, name: content.name, type: 'tool_use' },
],
});
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const params = { name: content.name, arguments: content.input as any };
console.log(`[internal] Calling tool (count: ${toolCallCount}): ${JSON.stringify(params)}`);
let results;
Expand Down
72 changes: 0 additions & 72 deletions src/frontend/style.css

This file was deleted.

0 comments on commit d311994

Please sign in to comment.