Spaces:
Sleeping
Sleeping
Commit
·
bb598af
1
Parent(s):
4f8ea5f
go
Browse files- app.py +1 -2
- requirements.txt +2 -1
app.py
CHANGED
@@ -6,10 +6,9 @@ from utils import extract_json_from_images
|
|
6 |
import numpy as np
|
7 |
from pydantic import BaseModel
|
8 |
|
9 |
-
import subprocess
|
10 |
from pathlib import Path
|
11 |
import time
|
12 |
-
from typing import List
|
13 |
|
14 |
# Load the FHE server
|
15 |
# FHE_SERVER = FHEModelServer(DEPLOYMENT_DIR)
|
|
|
6 |
import numpy as np
|
7 |
from pydantic import BaseModel
|
8 |
|
|
|
9 |
from pathlib import Path
|
10 |
import time
|
11 |
+
from typing import List, cast
|
12 |
|
13 |
# Load the FHE server
|
14 |
# FHE_SERVER = FHEModelServer(DEPLOYMENT_DIR)
|
requirements.txt
CHANGED
@@ -8,4 +8,5 @@ pytesseract
|
|
8 |
streamlit
|
9 |
langchain_huggingface
|
10 |
langchain
|
11 |
-
huggingface_hub
|
|
|
|
8 |
streamlit
|
9 |
langchain_huggingface
|
10 |
langchain
|
11 |
+
huggingface_hub
|
12 |
+
typing_extensions>=4.0.0
|