browse-ai 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5,14 +5,14 @@ import { z } from "zod";
5
5
  import { Readability } from "@mozilla/readability";
6
6
  import { parseHTML } from "linkedom";
7
7
  // --- Constants (inlined for standalone npm package) ---
8
- const VERSION = "0.1.3";
8
+ const VERSION = "0.1.4";
9
9
  const LLM_MODEL = "google/gemini-2.5-flash";
10
10
  const LLM_ENDPOINT = "https://openrouter.ai/api/v1/chat/completions";
11
11
  const TAVILY_ENDPOINT = "https://api.tavily.com/search";
12
12
  const MAX_PAGE_CONTENT_LENGTH = 3000;
13
13
  // --- API mode (BrowseAI Dev API key) ---
14
14
  const BROWSE_API_KEY = process.env.BROWSE_API_KEY;
15
- const BROWSE_API_URL = process.env.BROWSE_API_URL || "https://ai-agent-browser.vercel.app/api";
15
+ const BROWSE_API_URL = process.env.BROWSE_API_URL || "https://browseai.dev/api";
16
16
  const API_MODE = !!BROWSE_API_KEY;
17
17
  // --- CLI handling ---
18
18
  const args = process.argv.slice(2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browse-ai",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "Open-source deep research MCP server for AI agents. Search the web, extract claims, build evidence graphs, get structured answers with citations.",
6
6
  "keywords": [