Metadata-Version: 2.4
Name: serverz
Version: 0.1.12
Summary: Add your description here
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: anyio>=4.11.0
Requires-Dist: apscheduler>=3.11.0
Requires-Dist: db-help>=0.1.5
Requires-Dist: fastapi>=0.118.0
Requires-Dist: llamahelper>=0.1.1
Requires-Dist: llmada>=1.1.3
Requires-Dist: mcp[cli]>=1.16.0
Requires-Dist: prompt-writing-assistant>=0.1.14
Requires-Dist: pymysql>=1.1.2
Requires-Dist: pytest>=8.4.2
Requires-Dist: pytest-asyncio>=1.2.0
Requires-Dist: pytest-tornasync>=0.6.0.post2
Requires-Dist: sse-starlette>=3.0.2
Requires-Dist: toml>=0.10.2
Requires-Dist: utils-tool==0.1.4
Requires-Dist: uvicorn>=0.37.0

使用以下方式进行server 和测试 配置对应测试环境 
uv run pytest -s tests/test_main.py::test_get_id_from_name 
uv run python -m clientz.server 80 --prod

docker-compose build --no-cache

# C语言相关使用方式

## 文本内容
├── CMakeLists.txt
├── LICENSE
├── Readme.md
├── conanfile.txt
└── src
    ├── workspace
        ├── main.cpp
        ├── show.cpp
        └── show.h

## build
cd build
conan install .. -of . --build missing
### 构建Cmake
cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release# or Debug



# clientz

# 正式启动
<!-- cd src; python -m clientz.server 8008 -->
python -m clientz.server --prod

# 测试启动
python -m src.clientz.server

基本只需要修改
core.py 
config.yaml


