File size: 629 Bytes
a98f893 8e92894 a98f893 8e92894 a98f893 c7963a5 a98f893 c7963a5 a98f893 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
[tool.poetry]
name = "formula1-ai"
version = "0.1.0"
description = "Using AI to analyse and generate race reports"
authors = ["Lucas Draichi <lucasdraichi@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
langchain = "^0.3.4"
langgraph = "^0.2.39"
langchain-community = "^0.3.3"
langchain-openai = "^0.2.3"
faiss-cpu = "^1.9.0"
gradio = "^5.3.0"
langchain-google-genai = "^2.0.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
notebook = "^7.2.2"
py-mon = "^2.0.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|