-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.07 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.07 KB
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
from setuptools import setup, find_packages
setup(
name="project-aether",
version="0.1.0",
author="Gabriel (Gabaoun) Penha",
description="Advanced RAG Engine with Event-Driven Workflows",
packages=find_packages(),
install_requires=[
"llama-index>=0.11.0",
"llama-index-core",
"llama-index-readers-file",
"llama-index-embeddings-huggingface",
"llama-index-llms-openai",
"llama-index-postprocessor-flag-embedding-reranker",
"llama-index-vector-stores-qdrant",
"llama-index-vector-stores-postgres",
"llama-index-utils-workflow",
"pydantic>=2.0",
"pydantic-settings",
"qdrant-client",
"redis",
"psycopg2-binary",
"pgvector",
"ragas",
"datasets",
"pandas",
"python-dotenv",
"arize-phoenix",
"presidio-analyzer",
"presidio-anonymizer",
"sentence-transformers",
"FlagEmbedding",
"tenacity",
"numpy",
"tiktoken",
"fastapi",
"uvicorn",
],
)