You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. # ragflow-sdk
  2. # build and publish python SDK to pypi.org
  3. ```shell
  4. uv build
  5. uv pip install twine
  6. export TWINE_USERNAME="__token__"
  7. export TWINE_PASSWORD=$YOUR_PYPI_API_TOKEN
  8. twine upload dist/*.whl
  9. ```