RAGflow/sdk/python/README.md

12 lines
203 B
Markdown
Raw Normal View History

2025-03-24 11:19:28 +08:00
# ragflow-sdk
# build and publish python SDK to pypi.org
```shell
uv build
uv pip install twine
export TWINE_USERNAME="__token__"
export TWINE_PASSWORD=$YOUR_PYPI_API_TOKEN
twine upload dist/*.whl
```