Spaces:
Sleeping
Sleeping
Kate Forsberg
commited on
Commit
·
14da133
1
Parent(s):
2329051
huggingspace
Browse files- .env +1 -0
- poetry.lock +0 -0
- pyproject.toml +25 -0
- requirements.txt +1 -0
.env
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
OPENAI_API_KEY=sk-proj-YMhoNKeJN0LRLIQPihROT3BlbkFJSS7TwEqSBdf6p0SgyCdv
|
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "griptape-chat"
|
3 |
+
version = "0.28.0"
|
4 |
+
description = "Chat demo using the Griptape Framework and Gradio."
|
5 |
+
authors = ["Griptape <[email protected]>"]
|
6 |
+
license = "Apache 2.0"
|
7 |
+
readme = "README.md"
|
8 |
+
repository = "https://github.com/griptape-ai/griptape-chat"
|
9 |
+
package-mode = false
|
10 |
+
|
11 |
+
[tool.poetry.dependencies]
|
12 |
+
python = "^3.11"
|
13 |
+
python-dotenv = "^1.0.0"
|
14 |
+
gradio = "^4.37.1"
|
15 |
+
griptape = "^0.28.0"
|
16 |
+
attrs = "^23.1.0"
|
17 |
+
pypdf = "^4.2.0"
|
18 |
+
pymupdf = "^1.24.7"
|
19 |
+
azure-identity = "^1.17.1"
|
20 |
+
|
21 |
+
|
22 |
+
|
23 |
+
[build-system]
|
24 |
+
requires = ["poetry-core"]
|
25 |
+
build-backend = "poetry.core.masonry.api"
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
griptape
|