iflow-mcp_howe829-websearch-mcp-server 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- config.py +13 -13
- {iflow_mcp_howe829_websearch_mcp_server-0.1.0.dist-info → iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info}/METADATA +1 -1
- {iflow_mcp_howe829_websearch_mcp_server-0.1.0.dist-info → iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info}/RECORD +7 -7
- {iflow_mcp_howe829_websearch_mcp_server-0.1.0.dist-info → iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info}/WHEEL +0 -0
- {iflow_mcp_howe829_websearch_mcp_server-0.1.0.dist-info → iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info}/entry_points.txt +0 -0
- {iflow_mcp_howe829_websearch_mcp_server-0.1.0.dist-info → iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info}/licenses/LICENSE +0 -0
config.py
CHANGED
|
@@ -2,19 +2,19 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
class Settings(BaseSettings):
|
|
5
|
-
model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8")
|
|
5
|
+
model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8", extra="ignore")
|
|
6
6
|
|
|
7
|
-
bing_search_base_url: str
|
|
8
|
-
google_search_base_url: str
|
|
9
|
-
cc: str
|
|
10
|
-
language: str
|
|
11
|
-
impersonate: str
|
|
12
|
-
host: str
|
|
13
|
-
port: int
|
|
14
|
-
server_mode: str
|
|
15
|
-
llm_base_url: str
|
|
16
|
-
llm_api_key: str
|
|
17
|
-
llm_model_name: str
|
|
7
|
+
bing_search_base_url: str = "https://www.bing.com"
|
|
8
|
+
google_search_base_url: str = "https://www.google.com"
|
|
9
|
+
cc: str = "us"
|
|
10
|
+
language: str = "en"
|
|
11
|
+
impersonate: str = "edge"
|
|
12
|
+
host: str = "127.0.0.1"
|
|
13
|
+
port: int = 8002
|
|
14
|
+
server_mode: str = "stdio"
|
|
15
|
+
llm_base_url: str = "https://api.openai.com/v1"
|
|
16
|
+
llm_api_key: str = "sk-test-key"
|
|
17
|
+
llm_model_name: str = "gpt-4"
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
settings = Settings()
|
|
20
|
+
settings = Settings()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
config.py,sha256=
|
|
1
|
+
config.py,sha256=vQ0jlI2hz1VW-NjHwBPw4PfY8F68h3gw7bgwdluy2t8,608
|
|
2
2
|
http_client.py,sha256=S5n21NcVI27C4nMMgssHFEB3LR8vMGaUqtPAYMkjJvI,2214
|
|
3
|
+
server.py,sha256=W8UcidG39nqAIzPO_cpaNeohTQ4WGLD5Nki0pbWvLTA,5549
|
|
3
4
|
providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
5
|
providers/baidu.py,sha256=1Ed0FANU-B4UBMwRZLHs6gbP1s-Wcq2NPkvlygwwMLg,1286
|
|
5
6
|
providers/base.py,sha256=2KrFcQQyemQzxHnyzFyX4Wq4ZXvKkjZMz2L-FcmOalg,652
|
|
@@ -9,13 +10,12 @@ providers/factory.py,sha256=VLMHjTO6IsSa9nllxcL43ejCsu1rTR4F6xLjVnxGK68,991
|
|
|
9
10
|
providers/github.py,sha256=PIZcXVvOir9Z57xKOFsDNGNSPE7efpRkl_tQKPb8hrY,539
|
|
10
11
|
providers/google.py,sha256=woJaA-C6MZU8osn5KywNGooSKGduKaZJJmVNxZxTYsM,942
|
|
11
12
|
providers/wechat.py,sha256=n7v5KHiQmrhHtKc4cI7YGNMd4GDp3MFy7XhdTc0PvCM,371
|
|
12
|
-
server.py,sha256=W8UcidG39nqAIzPO_cpaNeohTQ4WGLD5Nki0pbWvLTA,5549
|
|
13
13
|
xagents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
xagents/agent.py,sha256=kKXNywezkhqOUeojP8vEkSk9f1EKtUG8pa3DRmLV6uA,2333
|
|
15
15
|
xagents/query_optimizer.py,sha256=Z8Sz4Lpkyfnl0PoVv6tuXv3eGYBXPFZiZg-rmHu1Vvc,2677
|
|
16
16
|
xagents/result_formatter.py,sha256=le9Nw4WLayUoWZqqvAYjgb1J2BEvXqtCvkEgdYqC018,2195
|
|
17
|
-
iflow_mcp_howe829_websearch_mcp_server-0.1.
|
|
18
|
-
iflow_mcp_howe829_websearch_mcp_server-0.1.
|
|
19
|
-
iflow_mcp_howe829_websearch_mcp_server-0.1.
|
|
20
|
-
iflow_mcp_howe829_websearch_mcp_server-0.1.
|
|
21
|
-
iflow_mcp_howe829_websearch_mcp_server-0.1.
|
|
17
|
+
iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info/METADATA,sha256=OewctOcoQJfADZQYD8gd8d1ADhmgTu9kuGD7QbDAEvw,2458
|
|
18
|
+
iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
19
|
+
iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info/entry_points.txt,sha256=iILKixFfn48v6KB6N8J_cw2DaW4eU6fdzHqhg5XYLDc,53
|
|
20
|
+
iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info/licenses/LICENSE,sha256=sWqgeExPhDaW2FhUEKSl7rsxIfMzSgo8Nj8i0ilWnJs,1072
|
|
21
|
+
iflow_mcp_howe829_websearch_mcp_server-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|