cnhkmcp 2.3.3__py3-none-any.whl → 2.3.4__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.
- cnhkmcp/__init__.py +1 -1
- cnhkmcp/untracked/AI/321/206/320/261/320/234/321/211/320/255/320/262/321/206/320/237/320/242/321/204/342/225/227/342/225/242/main.py +7 -0
- cnhkmcp/untracked/AI/321/206/320/261/320/234/321/211/320/255/320/262/321/206/320/237/320/242/321/204/342/225/227/342/225/242//321/211/320/266/320/246/321/206/320/274/320/261/321/210/342/224/220/320/240/321/210/320/261/320/234/321/206/320/231/320/243/321/205/342/225/235/320/220/321/206/320/230/320/241.py +8 -0
- cnhkmcp/untracked/APP/ace_lib.py +8 -0
- cnhkmcp/untracked/APP//321/210/342/224/220/320/240/321/210/320/261/320/234/321/206/320/231/320/243/321/205/342/225/235/320/220/321/206/320/230/320/241.py +8 -0
- cnhkmcp/untracked/arxiv_api.py +7 -0
- cnhkmcp/untracked/back_up/forum_functions.py +8 -0
- cnhkmcp/untracked/forum_functions.py +8 -0
- cnhkmcp/untracked/mcp/321/206/320/246/320/227/321/204/342/225/227/342/225/242/321/210/320/276/342/225/221/321/205/320/255/320/253/321/207/320/231/320/2302_/321/205/320/266/320/222/321/206/320/256/320/254/321/205/320/236/320/257/321/207/320/231/320/230/321/205/320/240/320/277/321/205/320/232/320/270/321/204/342/225/225/320/235/321/204/342/225/221/320/226/321/206/342/225/241/320/237/321/210/320/267/320/230/321/205/320/251/320/270/321/205/342/226/221/342/226/222/321/210/320/277/320/245/321/210/342/224/220/320/251/321/204/342/225/225/320/272/forum_functions.py +8 -0
- cnhkmcp/untracked/mcp/321/206/320/246/320/227/321/204/342/225/227/342/225/242/321/210/320/276/342/225/221/321/205/320/255/320/253/321/207/320/231/320/2302_/321/205/320/266/320/222/321/206/320/256/320/254/321/205/320/236/320/257/321/207/320/231/320/230/321/205/320/240/320/277/321/205/320/232/320/270/321/204/342/225/225/320/235/321/204/342/225/221/320/226/321/206/342/225/241/320/237/321/210/320/267/320/230/321/205/320/251/320/270/321/205/342/226/221/342/226/222/321/210/320/277/320/245/321/210/342/224/220/320/251/321/204/342/225/225/320/272/platform_functions.py +8 -1
- cnhkmcp/untracked/platform_functions.py +7 -0
- cnhkmcp/untracked//321/211/320/225/320/235/321/207/342/225/234/320/276/321/205/320/231/320/235/321/210/342/224/220/320/240/321/210/320/261/320/234/321/206/320/230/320/241_/321/205/320/276/320/231/321/210/320/263/320/225/321/205/342/224/220/320/225/321/210/320/266/320/221/321/204/342/225/233/320/255/321/210/342/225/241/320/246/321/205/320/234/320/225.py +8 -0
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/METADATA +1 -1
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/RECORD +18 -18
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/WHEEL +0 -0
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/entry_points.txt +0 -0
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/licenses/LICENSE +0 -0
- {cnhkmcp-2.3.3.dist-info → cnhkmcp-2.3.4.dist-info}/top_level.txt +0 -0
cnhkmcp/__init__.py
CHANGED
|
@@ -12,6 +12,13 @@ import ctypes
|
|
|
12
12
|
import subprocess
|
|
13
13
|
import sys
|
|
14
14
|
|
|
15
|
+
# try set gbk problem
|
|
16
|
+
try:
|
|
17
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
18
|
+
except Exception as e:
|
|
19
|
+
print(e)
|
|
20
|
+
pass
|
|
21
|
+
|
|
15
22
|
# --- Auto-Install Dependencies ---
|
|
16
23
|
def install_dependencies():
|
|
17
24
|
import importlib.util
|
|
@@ -14,6 +14,14 @@ import platform
|
|
|
14
14
|
import urllib.parse
|
|
15
15
|
import urllib.request
|
|
16
16
|
from pathlib import Path
|
|
17
|
+
import io
|
|
18
|
+
|
|
19
|
+
# try set gbk problem
|
|
20
|
+
try:
|
|
21
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
22
|
+
except Exception as e:
|
|
23
|
+
print(e)
|
|
24
|
+
pass
|
|
17
25
|
|
|
18
26
|
# 获取脚本所在目录(项目根目录)
|
|
19
27
|
PROJECT_DIR = os.path.dirname(os.path.abspath(__file__))
|
cnhkmcp/untracked/APP/ace_lib.py
CHANGED
|
@@ -13,6 +13,14 @@ from urllib.parse import urljoin
|
|
|
13
13
|
import pandas as pd
|
|
14
14
|
import requests
|
|
15
15
|
import tqdm
|
|
16
|
+
import sys
|
|
17
|
+
import io
|
|
18
|
+
# try set gbk problem
|
|
19
|
+
try:
|
|
20
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
21
|
+
except Exception as e:
|
|
22
|
+
print(e)
|
|
23
|
+
pass
|
|
16
24
|
from helpful_functions import (
|
|
17
25
|
expand_dict_columns,
|
|
18
26
|
save_pnl,
|
|
@@ -7,6 +7,14 @@ A complete web application for decoding string templates with WorldQuant BRAIN i
|
|
|
7
7
|
import subprocess
|
|
8
8
|
import sys
|
|
9
9
|
import os
|
|
10
|
+
import io
|
|
11
|
+
|
|
12
|
+
# try set gbk problem
|
|
13
|
+
try:
|
|
14
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
15
|
+
except Exception as e:
|
|
16
|
+
print(e)
|
|
17
|
+
pass
|
|
10
18
|
|
|
11
19
|
def install_requirements():
|
|
12
20
|
"""Install required packages from requirements.txt if they're missing"""
|
cnhkmcp/untracked/arxiv_api.py
CHANGED
|
@@ -3,6 +3,13 @@ import xml.etree.ElementTree as ET
|
|
|
3
3
|
import os
|
|
4
4
|
import sys
|
|
5
5
|
import argparse
|
|
6
|
+
import io
|
|
7
|
+
# try set gbk problem
|
|
8
|
+
try:
|
|
9
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
10
|
+
except Exception as e:
|
|
11
|
+
print(e)
|
|
12
|
+
pass
|
|
6
13
|
|
|
7
14
|
def search_arxiv(query, max_results=10):
|
|
8
15
|
"""Search arXiv for papers"""
|
|
@@ -22,6 +22,14 @@ from selenium.common.exceptions import TimeoutException, NoSuchElementException
|
|
|
22
22
|
import requests
|
|
23
23
|
import os
|
|
24
24
|
import shutil
|
|
25
|
+
import io
|
|
26
|
+
|
|
27
|
+
# try set gbk problem
|
|
28
|
+
try:
|
|
29
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
30
|
+
except Exception as e:
|
|
31
|
+
print(e)
|
|
32
|
+
pass
|
|
25
33
|
|
|
26
34
|
# Initialize forum MCP server
|
|
27
35
|
try:
|
|
@@ -15,6 +15,14 @@ from bs4 import BeautifulSoup
|
|
|
15
15
|
from playwright.async_api import async_playwright
|
|
16
16
|
import requests
|
|
17
17
|
import os
|
|
18
|
+
import io
|
|
19
|
+
|
|
20
|
+
# try set gbk problem
|
|
21
|
+
try:
|
|
22
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
23
|
+
except Exception as e:
|
|
24
|
+
print(e)
|
|
25
|
+
pass
|
|
18
26
|
|
|
19
27
|
def log(message: str, level: str = "INFO"):
|
|
20
28
|
"""Log message with timestamp."""
|
|
@@ -15,6 +15,14 @@ from bs4 import BeautifulSoup
|
|
|
15
15
|
from playwright.async_api import async_playwright
|
|
16
16
|
import requests
|
|
17
17
|
import os
|
|
18
|
+
import io
|
|
19
|
+
|
|
20
|
+
# try set gbk problem
|
|
21
|
+
try:
|
|
22
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
23
|
+
except Exception as e:
|
|
24
|
+
print(e)
|
|
25
|
+
pass
|
|
18
26
|
|
|
19
27
|
def log(message: str, level: str = "INFO"):
|
|
20
28
|
"""Log message with timestamp."""
|
|
@@ -18,7 +18,7 @@ import os
|
|
|
18
18
|
import sys
|
|
19
19
|
import math
|
|
20
20
|
from time import sleep
|
|
21
|
-
|
|
21
|
+
import io
|
|
22
22
|
import requests
|
|
23
23
|
import pandas as pd
|
|
24
24
|
from mcp.server.fastmcp import FastMCP
|
|
@@ -29,6 +29,13 @@ from pathlib import Path
|
|
|
29
29
|
# Import the new forum client
|
|
30
30
|
from forum_functions import forum_client
|
|
31
31
|
|
|
32
|
+
# try set gbk problem
|
|
33
|
+
try:
|
|
34
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
35
|
+
except Exception as e:
|
|
36
|
+
print(e)
|
|
37
|
+
pass
|
|
38
|
+
|
|
32
39
|
# Configure logging
|
|
33
40
|
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
|
34
41
|
logger = logging.getLogger(__name__)
|
|
@@ -18,6 +18,13 @@ import os
|
|
|
18
18
|
import sys
|
|
19
19
|
import math
|
|
20
20
|
from time import sleep
|
|
21
|
+
import io
|
|
22
|
+
# try set gbk problem
|
|
23
|
+
try:
|
|
24
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
25
|
+
except Exception as e:
|
|
26
|
+
print(e)
|
|
27
|
+
pass
|
|
21
28
|
|
|
22
29
|
import requests
|
|
23
30
|
import pandas as pd
|
|
@@ -19,6 +19,14 @@ import importlib
|
|
|
19
19
|
import importlib.metadata
|
|
20
20
|
import re
|
|
21
21
|
from typing import List, Tuple, Optional
|
|
22
|
+
import io
|
|
23
|
+
|
|
24
|
+
# try set gbk problem
|
|
25
|
+
try:
|
|
26
|
+
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
|
|
27
|
+
except Exception as e:
|
|
28
|
+
print(e)
|
|
29
|
+
pass
|
|
22
30
|
|
|
23
31
|
# Hardcoded package requirements (merged from workspace requirements)
|
|
24
32
|
# Note: versions intentionally relaxed (no strict pins).
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
cnhkmcp/__init__.py,sha256=
|
|
1
|
+
cnhkmcp/__init__.py,sha256=tBaCZwf6G0D8hecHIWYF8wXnMfzjB2IBsV_1ARk9NKM,2759
|
|
2
2
|
cnhkmcp/untracked/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
cnhkmcp/untracked/arXiv_API_Tool_Manual.md,sha256=I3hvI5mpmIjBuWptufoVSWFnuhyUc67oCGHEuR0p_xs,13552
|
|
4
|
-
cnhkmcp/untracked/arxiv_api.py,sha256
|
|
4
|
+
cnhkmcp/untracked/arxiv_api.py,sha256=Q_jBHaX5c12cikS-TZ4poBYo4ydPRD1P6WW5CPGEvEI,9180
|
|
5
5
|
cnhkmcp/untracked/brain-consultant.md,sha256=6eqVPT-EVLZgP_kOt1HSibXixbIMeoubX8mS5o4OxBs,3696
|
|
6
|
-
cnhkmcp/untracked/forum_functions.py,sha256=
|
|
7
|
-
cnhkmcp/untracked/platform_functions.py,sha256=
|
|
6
|
+
cnhkmcp/untracked/forum_functions.py,sha256=wbq74R_xYWUI48WBhKNoRy1zS9Sz1SP4WFx33f4rubA,19129
|
|
7
|
+
cnhkmcp/untracked/platform_functions.py,sha256=FejdICmKGNpqg7pUzB6cF1ZQAB67CbjLmtP36bMBJY8,111354
|
|
8
8
|
cnhkmcp/untracked/sample_mcp_config.json,sha256=QSFvZ086bxUQsvmLjcE6pL9ObzKn4FGnt9npWPo7Eps,1044
|
|
9
9
|
cnhkmcp/untracked/user_config.json,sha256=_INn1X1qIsITrmEno-BRlQOAGm9wnNCw-6B333DEvnk,695
|
|
10
10
|
cnhkmcp/untracked/示例参考文档_BRAIN_Alpha_Test_Requirements_and_Tips.md,sha256=W4dtQrqoTN72UyvIsvkGRF0HFOJLHSDeeSlbR3gqQg0,17133
|
|
@@ -13,7 +13,7 @@ cnhkmcp/untracked/示例工作流_BRAIN_6_Tips_Datafield_Exploration_Guide.md,sh
|
|
|
13
13
|
cnhkmcp/untracked/示例工作流_BRAIN_Alpha_Improvement_Workflow.md,sha256=XlWYREd_qXe1skdXIhkiGY05oDr_6KiBs1WkerY4S8U,5092
|
|
14
14
|
cnhkmcp/untracked/示例工作流_Dataset_Exploration_Expert_Manual.md,sha256=-C4fWdaBe9UzA5BDZz0Do2z8RaPWLslb6D0nTz6fqk4,24403
|
|
15
15
|
cnhkmcp/untracked/示例工作流_daily_report_workflow.md,sha256=6aNmPqWRn09XdQMRxoVTka9IYVOUv5LcWparHu16EfQ,9460
|
|
16
|
-
cnhkmcp/untracked/配置前运行我_安装必要依赖包.py,sha256=
|
|
16
|
+
cnhkmcp/untracked/配置前运行我_安装必要依赖包.py,sha256=RGQ_YnLnXEzoNPplKt01DNnW0tM9xRYpzQIGKpzVbf8,7178
|
|
17
17
|
cnhkmcp/untracked/AI打工人/BRAIN_AI打工人Mac_Linux版本.zip,sha256=11-7NsaMTPeWOIMWp645v7xQdAGsoKNwEXmhT4vLW8Y,36723
|
|
18
18
|
cnhkmcp/untracked/AI打工人/双击安装AI打工人_Windows版本.exe,sha256=gqMFJ9-op4uVuWGRAix_ol5HH4hOS5YjV7bmWFl009c,11242659
|
|
19
19
|
cnhkmcp/untracked/AI桌面插件/README.md,sha256=9Iu_XFpK0MyAtnGOxo3BxEo9ibEOSBkPvW9IuTrDPmw,1234
|
|
@@ -21,12 +21,12 @@ cnhkmcp/untracked/AI桌面插件/ace.log,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
21
21
|
cnhkmcp/untracked/AI桌面插件/config.json,sha256=tMF0TRyfQah749dIGkpY9dVfGygQ3YU384Vw-Kv5EDk,1984
|
|
22
22
|
cnhkmcp/untracked/AI桌面插件/icon.ico,sha256=oPkiKlN_f8zXTZhBmr6BVGjxfWr_wdIe5Flgq02wp-s,3284
|
|
23
23
|
cnhkmcp/untracked/AI桌面插件/icon.png,sha256=xg3EfFWiXzibPH38JCC0xpQMfGH6asOZbT0lWFVzl00,1628
|
|
24
|
-
cnhkmcp/untracked/AI桌面插件/main.py,sha256=
|
|
24
|
+
cnhkmcp/untracked/AI桌面插件/main.py,sha256=61dud1tLWf1HIrzwYN4yGM9WFbF4UpauqL_Uox-qU98,23164
|
|
25
25
|
cnhkmcp/untracked/AI桌面插件/process_knowledge_base.py,sha256=hKY3Uus81cfhBIxuCPiOV-5RDNAM3NxQ_VD0T3BezwQ,10073
|
|
26
26
|
cnhkmcp/untracked/AI桌面插件/rag_engine.py,sha256=fQiA817OOv9dNkNfR6M7oiXz2WaNZ78mEgwcnrF946E,18865
|
|
27
27
|
cnhkmcp/untracked/AI桌面插件/requirements.txt,sha256=jLAbyxGnvi_f05YakzmC_vfVUbfaBUmHBULAmKl0N2o,82
|
|
28
28
|
cnhkmcp/untracked/AI桌面插件/run.bat,sha256=6Zj0DvBzq86mcptoxWPjmIQms8hYboMWDECM3xA8cr4,32
|
|
29
|
-
cnhkmcp/untracked/AI桌面插件/首次运行打开我.py,sha256=
|
|
29
|
+
cnhkmcp/untracked/AI桌面插件/首次运行打开我.py,sha256=bmSO-745EF89ecxCs7jU-2LKYofs58ka74Xg5_rHlNM,9732
|
|
30
30
|
cnhkmcp/untracked/AI桌面插件/get_knowledgeBase_tool/ace_lib.py,sha256=nSnmM5zfI6lxIln1vctz7TCwjAWcljVXITy7R4gS3Q0,53947
|
|
31
31
|
cnhkmcp/untracked/AI桌面插件/get_knowledgeBase_tool/fetch_all_datasets.py,sha256=NoRN5NoouW62Us1RvsbyTkgGu0w9ZWkARA1j4gDO5EY,5366
|
|
32
32
|
cnhkmcp/untracked/AI桌面插件/get_knowledgeBase_tool/fetch_all_documentation.py,sha256=PUviCKtUkGlgyVxznZq5y_wEnn32S9-dzlN91tbbWYs,5260
|
|
@@ -114,7 +114,7 @@ cnhkmcp/untracked/APP/.gitignore,sha256=oPCoVTNo82bhkN0c671LdjCpOTVpVhZI5NR75ztc
|
|
|
114
114
|
cnhkmcp/untracked/APP/MODULAR_STRUCTURE.md,sha256=b5xV74-_RtXq2K1EsYDwMukO6lxjJ4-lnOAEnTHpFS0,4706
|
|
115
115
|
cnhkmcp/untracked/APP/README.md,sha256=vb7hmQX0sH5aFNBmDCN5szMSDHm1_h2VKY4UKCt0aMk,11676
|
|
116
116
|
cnhkmcp/untracked/APP/ace.log,sha256=HXNY3zIjxRA2b4xcRkQbX5qGdrb0Jk3lI-YnkMSVTow,11623
|
|
117
|
-
cnhkmcp/untracked/APP/ace_lib.py,sha256=
|
|
117
|
+
cnhkmcp/untracked/APP/ace_lib.py,sha256=ZkJbzwHvBsJX6ceWRmZ3GGRCMTaYMGgNAl8FQr8NwY0,54111
|
|
118
118
|
cnhkmcp/untracked/APP/helpful_functions.py,sha256=Jc8gclRkvGx7el0XgTmZ67qwMSHrSluYheCUvzd6mbg,6640
|
|
119
119
|
cnhkmcp/untracked/APP/mirror_config.txt,sha256=RL1jFYwcvDPkLd6tc_lqVcwjTLORWt5Qu0Ym_BTPaao,504
|
|
120
120
|
cnhkmcp/untracked/APP/operaters.csv,sha256=g8m6z-u0x-CoqGFSp_g3UMyLJkdFLE5UwsNkueMH1yw,13610
|
|
@@ -125,7 +125,7 @@ cnhkmcp/untracked/APP/setup_tsinghua.bat,sha256=9dLWCaQTULf3d2LqiAlvQrA4wuM1dysG
|
|
|
125
125
|
cnhkmcp/untracked/APP/setup_tsinghua.sh,sha256=mMDXTqCRIXtSHa_1pU0jCnNF-xajqfZDlUA72XpcAOk,1195
|
|
126
126
|
cnhkmcp/untracked/APP/ssrn-3332513.pdf,sha256=GEwf1Srtk-fTvF03dhTEjXJstHBARIUg31k7s5kxS98,2082078
|
|
127
127
|
cnhkmcp/untracked/APP/usage.md,sha256=t7D-5b2P_JZIn6F7ZRFOSZCYl3Vr5fvHGNVy73Nf_N0,16140
|
|
128
|
-
cnhkmcp/untracked/APP/运行打开我.py,sha256=
|
|
128
|
+
cnhkmcp/untracked/APP/运行打开我.py,sha256=POmn6xkukDP194RmsdPPcPV3S7yoEMLnPkv8_vFY3z0,116786
|
|
129
129
|
cnhkmcp/untracked/APP/Tranformer/Transformer.py,sha256=C65g1A5iVdEKcDUImL9MOYHws0CtHsFHykvX0FDfrTA,189021
|
|
130
130
|
cnhkmcp/untracked/APP/Tranformer/ace_lib.py,sha256=nSnmM5zfI6lxIln1vctz7TCwjAWcljVXITy7R4gS3Q0,53947
|
|
131
131
|
cnhkmcp/untracked/APP/Tranformer/helpful_functions.py,sha256=Jc8gclRkvGx7el0XgTmZ67qwMSHrSluYheCUvzd6mbg,6640
|
|
@@ -290,10 +290,10 @@ cnhkmcp/untracked/APP/trailSomeAlphas/skills/template_final_enhance/单因子思
|
|
|
290
290
|
cnhkmcp/untracked/APP/缘分一道桥/ace_lib.py,sha256=nSnmM5zfI6lxIln1vctz7TCwjAWcljVXITy7R4gS3Q0,53947
|
|
291
291
|
cnhkmcp/untracked/APP/缘分一道桥/brain_alpha_inspector.py,sha256=eSmGEPFQhqjR96hRCDMCbBSp3wmcwmymdC25Mxa5WdQ,24763
|
|
292
292
|
cnhkmcp/untracked/APP/缘分一道桥/helpful_functions.py,sha256=Jc8gclRkvGx7el0XgTmZ67qwMSHrSluYheCUvzd6mbg,6640
|
|
293
|
-
cnhkmcp/untracked/back_up/forum_functions.py,sha256=
|
|
293
|
+
cnhkmcp/untracked/back_up/forum_functions.py,sha256=qqUh8ZWCs_JKolGNLsWZI2VMjcD3BmxPYoeNHHHvgyc,42457
|
|
294
294
|
cnhkmcp/untracked/back_up/platform_functions.py,sha256=HvFfS44qGzw2yYKlpUM6oWrMnxrkR37Ht13l3atbTI4,123336
|
|
295
|
-
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/forum_functions.py,sha256=
|
|
296
|
-
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/platform_functions.py,sha256=
|
|
295
|
+
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/forum_functions.py,sha256=wbq74R_xYWUI48WBhKNoRy1zS9Sz1SP4WFx33f4rubA,19129
|
|
296
|
+
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/platform_functions.py,sha256=X9gl7mRC2FSC9rPRhhBqLx5CL7Qc9pUgkZk8A7Qpy3M,111354
|
|
297
297
|
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/user_config.json,sha256=_INn1X1qIsITrmEno-BRlQOAGm9wnNCw-6B333DEvnk,695
|
|
298
298
|
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/让AI读这个文档来学会下载浏览器.md,sha256=v5QPSMjRDh52ZjgC4h8QjImnaqlVRLjTHGxmGjTo36g,3396
|
|
299
299
|
cnhkmcp/untracked/mcp文件论坛版2_如果原版启动不了浏览器就试这个/配置前运行我_安装必要依赖包.py,sha256=BnUyL5g6PaC62yEuS-8vcDSJ0oKu3k6jqQxi2jginuQ,6612
|
|
@@ -384,9 +384,9 @@ cnhkmcp/untracked/skills/pull_BRAINSkill/SKILL.md,sha256=QyXQ0wr9LeZyKqkvSTto72b
|
|
|
384
384
|
cnhkmcp/untracked/skills/pull_BRAINSkill/scripts/pull_skills.py,sha256=6v3Z3cc9_qKvBj7C6y2jWY1pAd76SA3JmiVj_KkZkmw,6341
|
|
385
385
|
cnhkmcp/vector_db/_manifest.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
386
386
|
cnhkmcp/vector_db/_meta.json,sha256=xQwhRA0prLtwFAMAGR1ZgCR76jVEFIEfF-1SNPpTMgI,91
|
|
387
|
-
cnhkmcp-2.3.
|
|
388
|
-
cnhkmcp-2.3.
|
|
389
|
-
cnhkmcp-2.3.
|
|
390
|
-
cnhkmcp-2.3.
|
|
391
|
-
cnhkmcp-2.3.
|
|
392
|
-
cnhkmcp-2.3.
|
|
387
|
+
cnhkmcp-2.3.4.dist-info/licenses/LICENSE,sha256=QLxO2eNMnJQEdI_R1UV2AOD-IvuA8zVrkHWA4D9gtoc,1081
|
|
388
|
+
cnhkmcp-2.3.4.dist-info/METADATA,sha256=9SINVj5hg_2Vb-ZzuySBaSNV8YeotbEWEy3GGzNTJIo,5171
|
|
389
|
+
cnhkmcp-2.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
390
|
+
cnhkmcp-2.3.4.dist-info/entry_points.txt,sha256=lTQieVyIvjhSMK4fT-XwnccY-JBC1H4vVQ3V9dDM-Pc,70
|
|
391
|
+
cnhkmcp-2.3.4.dist-info/top_level.txt,sha256=x--ibUcSgOS9Z_RWK2Qc-vfs7DaXQN-WMaaxEETJ1Bw,8
|
|
392
|
+
cnhkmcp-2.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|