Spaces:
Sleeping
Sleeping
Commit
·
ad0b629
1
Parent(s):
aa1932e
Subindo arquivos71
Browse files
app.py
CHANGED
@@ -263,6 +263,10 @@ def analyze_aia(uploaded_files):
|
|
263 |
# Caminho do exemplo fornecido
|
264 |
example_file_path = "/mnt/data/example1.aia"
|
265 |
|
|
|
|
|
|
|
|
|
266 |
iface = gr.Interface(
|
267 |
fn=analyze_aia,
|
268 |
inputs=gr.Files(label="Upload .aia Files"),
|
|
|
263 |
# Caminho do exemplo fornecido
|
264 |
example_file_path = "/mnt/data/example1.aia"
|
265 |
|
266 |
+
# Verifique se o arquivo existe
|
267 |
+
if not os.path.exists(example_file_path):
|
268 |
+
raise FileNotFoundError(f"O arquivo de exemplo {example_file_path} não foi encontrado.")
|
269 |
+
|
270 |
iface = gr.Interface(
|
271 |
fn=analyze_aia,
|
272 |
inputs=gr.Files(label="Upload .aia Files"),
|