-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (53 loc) · 1.57 KB
/
pyproject.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "maeser"
version = "0.1.1"
description = "A package for building RAG chatbot applications for educational contexts."
authors = ["Carson Bush <[email protected]>", "Blaine Freestone <[email protected]>"]
include = [
"maeser/data/*",
"maeser/data/templates/*",
"maeser/data/static/*"
]
# Dependencies required by your project
[tool.poetry.dependencies]
# Specify where your Python interpreter is located
# Replace with your Python version if different
python = "<4.0,>=3.10"
# Langchain libraries for text processing and embeddings
langchain = "^0.2.8"
langchain_core = "^0.2.19"
langchain_community = "^0.2.7"
langchain_openai = "^0.1.16"
langchain-text-splitters = "^0.2.2"
langgraph = "^0.1.8"
# FAISS for vector stores (CPU version by default, GPU as optional)
# pip install maeser[gpu] for the GPU variant
faiss-cpu = "^1.8.0.post1"
# faiss-gpu = { version = "^1.7.2", optional = true }
# Web backend
flask = "^3.0.3"
flask-login = "^0.6.3"
# Turning markdown into HTML for display
markdown = "^3.6"
pymdown-extensions = "^10.8.1"
markdownify = "^0.13.1"
# Unit testing
ragas = "^0.1.10"
# Configuration
pyYAML = "^6.0.1"
# For HTTP requests
requests = "^2.32.3"
# Declare your project's development dependencies here
[tool.poetry.dev-dependencies]
pytest = "^8.2"
# Documentation
sphinx_rtd_theme = "^2.0.0"
myst_parser = "^3.0.1"
sphinx-book-theme = "^1.1.3"
# Build system configuration
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Define extra dependencies
[tool.poetry.extras]
gpu = ["faiss-gpu"]