Spaces:
Sleeping
Sleeping
Update parsing.py
Browse files- parsing.py +4 -1
parsing.py
CHANGED
|
@@ -568,7 +568,10 @@ def filter_dataframe(df: pd.DataFrame) -> pd.DataFrame:
|
|
| 568 |
return df_
|
| 569 |
|
| 570 |
|
| 571 |
-
from config import
|
|
|
|
|
|
|
|
|
|
| 572 |
|
| 573 |
with torch.no_grad():
|
| 574 |
torch.cuda.empty_cache()
|
|
|
|
| 568 |
return df_
|
| 569 |
|
| 570 |
|
| 571 |
+
from config import FORMAT_LONG
|
| 572 |
+
|
| 573 |
+
OPENAI_KEY = st.secrets["OPENAI_KEY"]
|
| 574 |
+
GEMINI_KEY = st.secrets["GEMINI_KEY"]
|
| 575 |
|
| 576 |
with torch.no_grad():
|
| 577 |
torch.cuda.empty_cache()
|