123456789101112131415161718192021222324 |
- [tool.poetry]
- name = "iva"
- version = "0.1.0"
- description = "Virtual Assistant app"
- authors = ["Sebastian Balmuș <sebastian.balmus@ici.ro>"]
- readme = "README.md"
- [tool.poetry.dependencies]
- python = "^3.12"
- openai = "^1.46.0"
- langchain = "^0.3.0"
- langchain-openai = "^0.2.0"
- homeassistant-api = "^4.2.2.post1"
- python-dotenv = "^1.0.1"
- gradio = "^4.44.0"
- [tool.poetry.plugins.dotenv]
- ignore = "false"
- location = "./.env"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
|