wet-mcp 1.1.0__tar.gz → 1.2.0__tar.gz
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.
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/PKG-INFO +1 -1
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/pyproject.toml +1 -1
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/config.py +1 -1
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/llm.py +1 -1
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/.gitignore +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/LICENSE +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/README.md +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/__init__.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/__main__.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/docker_manager.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/docs/__init__.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/docs/help.md +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/docs/media.md +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/docs/web.md +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/searxng_settings.yml +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/server.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/setup.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/sources/__init__.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/sources/crawler.py +0 -0
- {wet_mcp-1.1.0 → wet_mcp-1.2.0}/src/wet_mcp/sources/searxng.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wet-mcp
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Open-source MCP Server thay thế Tavily - Web search, extract, crawl với SearXNG
|
|
5
5
|
Project-URL: Homepage, https://github.com/n24q02m/wet-mcp
|
|
6
6
|
Project-URL: Repository, https://github.com/n24q02m/wet-mcp.git
|
|
@@ -25,7 +25,7 @@ class Settings(BaseSettings):
|
|
|
25
25
|
|
|
26
26
|
# Media Analysis (LiteLLM)
|
|
27
27
|
api_keys: str | None = None # provider:key,provider:key
|
|
28
|
-
llm_models: str = "gemini/gemini-
|
|
28
|
+
llm_models: str = "gemini/gemini-3-flash-preview" # provider/model (fallback chain)
|
|
29
29
|
|
|
30
30
|
def setup_api_keys(self) -> dict[str, list[str]]:
|
|
31
31
|
"""Parse API_KEYS and set environment variables for LiteLLM."""
|
|
@@ -14,7 +14,7 @@ def get_llm_config() -> dict:
|
|
|
14
14
|
"""Build LLM configuration with fallback."""
|
|
15
15
|
models = [m.strip() for m in settings.llm_models.split(",") if m.strip()]
|
|
16
16
|
if not models:
|
|
17
|
-
models = ["gemini/gemini-
|
|
17
|
+
models = ["gemini/gemini-3-flash-preview"]
|
|
18
18
|
|
|
19
19
|
primary = models[0]
|
|
20
20
|
fallbacks = models[1:] if len(models) > 1 else None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|