Spaces:
Sleeping
Sleeping
Kate Forsberg
commited on
Commit
·
8523085
1
Parent(s):
aa10914
fixed?
Browse files- app.py +1 -0
- poetry.lock +0 -0
- pyproject.toml +0 -4
- requirements.txt +1 -1
app.py
CHANGED
@@ -208,6 +208,7 @@ def send_message(message: str, history, request: gr.Request) -> Any:
|
|
208 |
|
209 |
demo = gr.ChatInterface(fn=send_message)
|
210 |
demo.launch(auth=(os.environ.get("GRADIO_USERNAME"), os.environ.get("GRADIO_PASSWORD")))
|
|
|
211 |
|
212 |
# Set it back to empty when a session is done
|
213 |
# Is there a better way?
|
|
|
208 |
|
209 |
demo = gr.ChatInterface(fn=send_message)
|
210 |
demo.launch(auth=(os.environ.get("GRADIO_USERNAME"), os.environ.get("GRADIO_PASSWORD")))
|
211 |
+
# demo.launch(share=True)
|
212 |
|
213 |
# Set it back to empty when a session is done
|
214 |
# Is there a better way?
|
poetry.lock
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
CHANGED
@@ -13,14 +13,10 @@ python = "^3.11"
|
|
13 |
python-dotenv = "^1.0.0"
|
14 |
gradio = "^4.37.1"
|
15 |
griptape = {version="0.30.2", extras=["drivers-embedding-voyageai","drivers-prompt-anthropic"]}
|
16 |
-
attrs = "^24.2.0"
|
17 |
-
pymupdf = "^1.24.7"
|
18 |
argparse = "^1.4.0"
|
19 |
azure-identity = "^1.17.1"
|
20 |
|
21 |
|
22 |
-
|
23 |
-
|
24 |
[build-system]
|
25 |
requires = ["poetry-core"]
|
26 |
build-backend = "poetry.core.masonry.api"
|
|
|
13 |
python-dotenv = "^1.0.0"
|
14 |
gradio = "^4.37.1"
|
15 |
griptape = {version="0.30.2", extras=["drivers-embedding-voyageai","drivers-prompt-anthropic"]}
|
|
|
|
|
16 |
argparse = "^1.4.0"
|
17 |
azure-identity = "^1.17.1"
|
18 |
|
19 |
|
|
|
|
|
20 |
[build-system]
|
21 |
requires = ["poetry-core"]
|
22 |
build-backend = "poetry.core.masonry.api"
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
griptape[all]
|
2 |
python-dotenv
|
|
|
1 |
+
griptape[all]="0.30.2"
|
2 |
python-dotenv
|