Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. ```