Skip to content

Commit

Permalink
remove debug console calls
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-balfe committed Jul 6, 2024
1 parent bae2f25 commit c6c80b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "brave-search",
"version": "0.5.2",
"version": "0.5.3",
"description": "A TypeScript library for interacting with the Brave Search API, including web search, local POI search, and automatic summarization features.",
"scripts": {
"build": "tsc",
Expand Down
3 changes: 1 addition & 2 deletions src/braveSearch.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2023 Erik Balfe
// Copyright (C) 2024 Erik Balfe
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -151,7 +151,6 @@ class BraveSearch {
for (let attempt = 0; attempt < this.maxPollAttempts; attempt++) {
const summaryResponse = await this.summarizerSearch(key, options);

console.warn("summary", summaryResponse);
if (summaryResponse.status === "complete" && summaryResponse.summary) {
return summaryResponse;
} else if (summaryResponse.status === "failed") {
Expand Down

0 comments on commit c6c80b9

Please sign in to comment.