refactor: clean up code formatting and update package version to 0.5.2

This commit is contained in:
Vladislav Polyakov
2024-11-25 23:55:42 +03:00
parent b4c727c86f
commit f5be3b785c
3 changed files with 5 additions and 35 deletions

View File

@@ -7,7 +7,6 @@ import {
ListToolsRequestSchema,
Tool,
} from "@modelcontextprotocol/sdk/types.js";
import fetch from "node-fetch";
const WEB_SEARCH_TOOL: Tool = {
name: "brave_web_search",
@@ -104,7 +103,7 @@ function checkRateLimit() {
requestCount.lastReset = now;
}
if (requestCount.second >= RATE_LIMIT.perSecond ||
requestCount.month >= RATE_LIMIT.perMonth) {
requestCount.month >= RATE_LIMIT.perMonth) {
throw new Error('Rate limit exceeded');
}
requestCount.second++;