-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.06 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
[project]
name = "Edmonbrain"
version = "0.0.9000"
description = "QnA LLM models for chat bots run via PubSub and Cloud Run"
authors = [
{name = "Mark Edmondson", email = "[email protected]"},
]
dependencies = [
"flask",
"requests",
"openai",
"chromadb",
"tiktoken",
"python-dateutil",
"google-cloud-bigquery",
"google-cloud-pubsub",
"google-auth",
"google-cloud-storage",
"unstructured[local-inference]",
"tabulate",
"pdf2image",
"pytesseract",
"supabase",
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"psycopg2-binary",
"google-cloud-aiplatform",
"google-generativeai",
"python-dotenv",
"langchain>=0.0.229",
"google-cloud-aiplatform>=1.26.0",
"discord",
"aiohttp>=3.8.5",
"slack-bolt>=1.18.0",
"pypdf>=3.13.0",
"google-cloud-discoveryengine>=0.10.0",
]
requires-python = ">=3.9"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
debug = "debugger.py"