pyproject.toml 506 B

123456789101112131415161718192021222324
  1. [tool.poetry]
  2. name = "iva"
  3. version = "0.1.0"
  4. description = "Virtual Assistant app"
  5. authors = ["Sebastian Balmuș <sebastian.balmus@ici.ro>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.12"
  9. openai = "^1.46.0"
  10. langchain = "^0.3.0"
  11. langchain-openai = "^0.2.0"
  12. homeassistant-api = "^4.2.2.post1"
  13. python-dotenv = "^1.0.1"
  14. gradio = "^4.44.0"
  15. [tool.poetry.plugins.dotenv]
  16. ignore = "false"
  17. location = "./.env"
  18. [build-system]
  19. requires = ["poetry-core"]
  20. build-backend = "poetry.core.masonry.api"