forked from qnguyen3/chat-with-mlx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.7 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "chat_with_mlx"
version = "0.1.11"
description = "A Retrieval-augmented Generation (RAG) chat interface with support for multiple open-source models, designed to run natively on MacOS and Apple Silicon with MLX."
readme = "README.md"
keywords = ["mlx","chat","chatbot","chat_with_mlx","chat_with_mlx"]
authors = [
{ name = "Quan Nguyen", email = "[email protected]" },
]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">= 3.8"
dependencies = [
"mlx-lm==0.0.13",
"gradio==4.19.2",
"tiktoken==0.6.0",
"openai==1.12.0",
"langchain==0.1.9",
"langchain-community==0.0.24",
"langchain-core==0.1.27",
"sentence-transformers==2.4.0",
"einops==0.7.0",
"chromadb==0.4.24",
"pypdf==4.0.2",
"youtube-transcript-api==0.6.2",
"sentencepiece==0.2.0",
"docx2txt==0.8"
]
[tool.setuptools]
package-dir = {"chat_with_mlx" = "chat_with_mlx"}
include-package-data = true
license-files = ["LICENSE"]
zip-safe = true
[tool.setuptools.packages.find]
include = ["chat_with_mlx*"]
exclude = ["docs*", "tests*","third_party*","assets*", "chat_with_mlx/models/*"]
[project.scripts]
chat-with-mlx = "chat_with_mlx.app:main"