18 lines
659 B
TOML
18 lines
659 B
TOML
[project]
|
|
name = "bosch-hvac-products-bot"
|
|
version = "0.1.0"
|
|
description = "RAG-powered assistant for Bosch HVAC sales & spec questions. Retrieval via FAISS + Google Gemini embeddings; generation via Gemini Flash Lite. Gradio web UI and CLI interfaces. Built as a technical exploration for the Bosch Home Comfort AI Task Force."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"beautifulsoup4>=4.15.0",
|
|
"faiss-cpu>=1.15.0",
|
|
"gradio>=6.27.0",
|
|
"langchain>=1.4.0",
|
|
"langchain-community>=0.4.2",
|
|
"langchain-google-genai>=4.4.0",
|
|
"langchain-text-splitters>=1.1.2",
|
|
"python-dotenv>=1.2.3",
|
|
"requests>=2.34.2",
|
|
]
|