Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pyproject.toml 577B

12345678910111213141516171819
  1. [tool.poetry]
  2. name = "ragflow-sdk"
  3. version = "0.15.1"
  4. description = "Python client sdk of [RAGFlow](https://github.com/infiniflow/ragflow). RAGFlow is an open-source RAG (Retrieval-Augmented Generation) engine based on deep document understanding."
  5. authors = ["Zhichang Yu <yuzhichang@gmail.com>"]
  6. license = "Apache License, Version 2.0"
  7. readme = "README.md"
  8. package-mode = true
  9. [tool.poetry.dependencies]
  10. python = ">=3.10,<3.13"
  11. requests = "^2.30.0"
  12. beartype = "^0.18.5"
  13. pytest = "^8.0.0"
  14. [build-system]
  15. requires = ["poetry-core"]
  16. build-backend = "poetry.core.masonry.api"