Spaces:
Runtime error
Runtime error
ffreemt
commited on
Commit
·
51ccc27
1
Parent(s):
3227917
Update homepage info
Browse files
main.py
CHANGED
@@ -8,15 +8,8 @@ import gradio as gr
|
|
8 |
import httpx
|
9 |
from loguru import logger
|
10 |
|
11 |
-
from app import (
|
12 |
-
|
13 |
-
ingest,
|
14 |
-
ns,
|
15 |
-
ns_initial,
|
16 |
-
process_files,
|
17 |
-
respond,
|
18 |
-
upload_files,
|
19 |
-
)
|
20 |
from load_api_key import load_api_key, pk_base, sk_base
|
21 |
|
22 |
api_key = load_api_key()
|
@@ -57,7 +50,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
57 |
|
58 |
Send empty query (hit Enter) to check embedding status and files info ([filename, numb of chars])
|
59 |
|
60 |
-
Homepage: https://huggingface.co/spaces/mikeee/
|
61 |
"""
|
62 |
gr.Markdown(dedent(_))
|
63 |
|
|
|
8 |
import httpx
|
9 |
from loguru import logger
|
10 |
|
11 |
+
from app import (embed_files, ingest, ns, ns_initial, process_files, respond,
|
12 |
+
upload_files)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
from load_api_key import load_api_key, pk_base, sk_base
|
14 |
|
15 |
api_key = load_api_key()
|
|
|
50 |
|
51 |
Send empty query (hit Enter) to check embedding status and files info ([filename, numb of chars])
|
52 |
|
53 |
+
Homepage: https://huggingface.co/spaces/mikeee/multilingual-dokugpt
|
54 |
"""
|
55 |
gr.Markdown(dedent(_))
|
56 |
|