fantaxy commited on
Commit
35a1d24
·
verified ·
1 Parent(s): 329b7c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -19
app.py CHANGED
@@ -1,22 +1,35 @@
1
- # -*- coding: utf-8 -*-
2
-
3
- import gradio as gr
4
- from huggingface_hub import InferenceClient
5
- from gradio_client import Client
6
  import os
7
- import requests
8
- import asyncio
9
- import logging
10
- from concurrent.futures import ThreadPoolExecutor
11
 
12
- import ast #추가 삽입, requirements: albumentations 추가
13
- script_repr = os.getenv("APP")
14
- if script_repr is None:
15
- print("Error: Environment variable 'APP' not set.")
16
- sys.exit(1)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- try:
19
- exec(script_repr)
20
- except Exception as e:
21
- print(f"Error executing script: {e}")
22
- sys.exit(1)
 
 
 
 
 
 
1
  import os
2
+ import sys
3
+ import streamlit as st
4
+ from tempfile import NamedTemporaryFile
 
5
 
6
+ def main():
7
+ try:
8
+ # Get the code from secrets
9
+ code = os.environ.get("MAIN_CODE")
10
+
11
+ if not code:
12
+ st.error("⚠️ The application code wasn't found in secrets. Please add the MAIN_CODE secret.")
13
+ return
14
+
15
+ # Create a temporary Python file
16
+ with NamedTemporaryFile(suffix='.py', delete=False, mode='w') as tmp:
17
+ tmp.write(code)
18
+ tmp_path = tmp.name
19
+
20
+ # Execute the code
21
+ exec(compile(code, tmp_path, 'exec'), globals())
22
+
23
+ # Clean up the temporary file
24
+ try:
25
+ os.unlink(tmp_path)
26
+ except:
27
+ pass
28
+
29
+ except Exception as e:
30
+ st.error(f"⚠️ Error loading or executing the application: {str(e)}")
31
+ import traceback
32
+ st.code(traceback.format_exc())
33
 
34
+ if __name__ == "__main__":
35
+ main()