Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ def run_pipeline(pdf_file, system_prompt, max_step, learning_rate, epochs, model
|
|
6 |
# Construct job input
|
7 |
data = {
|
8 |
"input": {
|
9 |
-
"pdf_file": pdf_file,
|
10 |
"system_prompt": system_prompt,
|
11 |
"max_step": max_step,
|
12 |
"learning_rate": learning_rate,
|
@@ -26,39 +26,43 @@ def run_pipeline(pdf_file, system_prompt, max_step, learning_rate, epochs, model
|
|
26 |
)
|
27 |
stdout, stderr = process.communicate()
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
56 |
|
57 |
except FileNotFoundError:
|
58 |
return {"status": "error", "details": "Handler script not found"}
|
59 |
except Exception as e:
|
60 |
return {"status": "error", "details": str(e)}
|
61 |
|
|
|
62 |
# Define Gradio interface
|
63 |
with gr.Blocks(css='''
|
64 |
.gradio-container {
|
@@ -132,7 +136,7 @@ with gr.Blocks(css='''
|
|
132 |
# Layout structure with improved spacing
|
133 |
with gr.Row():
|
134 |
with gr.Column(scale=2):
|
135 |
-
pdf_file = gr.
|
136 |
with gr.Column(scale=3):
|
137 |
system_prompt = gr.Textbox(label="System Prompt", placeholder="Enter system instructions or context", value="You are a helpful assistant that provides detailed information based on the provided text.")
|
138 |
with gr.Column(scale=2):
|
|
|
6 |
# Construct job input
|
7 |
data = {
|
8 |
"input": {
|
9 |
+
"pdf_file": pdf_file.name,
|
10 |
"system_prompt": system_prompt,
|
11 |
"max_step": max_step,
|
12 |
"learning_rate": learning_rate,
|
|
|
26 |
)
|
27 |
stdout, stderr = process.communicate()
|
28 |
|
29 |
+
# Extract JSON object from the output
|
30 |
+
output_lines = stdout.splitlines()
|
31 |
+
handler_output = None
|
32 |
+
for line in output_lines:
|
33 |
+
try:
|
34 |
+
parsed_line = json.loads(line)
|
35 |
+
if isinstance(parsed_line, dict) and "status" in parsed_line:
|
36 |
+
handler_output = parsed_line
|
37 |
+
break
|
38 |
+
except json.JSONDecodeError:
|
39 |
+
continue
|
40 |
+
|
41 |
+
if handler_output is None:
|
42 |
+
return {"status": "error", "details": f"No valid JSON found in output: {stdout}"}
|
43 |
+
|
44 |
+
# Check the status in the parsed JSON
|
45 |
+
if handler_output.get("status") == "success":
|
46 |
+
# Extract and format the result
|
47 |
+
model_name = handler_output.get("model_name", "N/A")
|
48 |
+
processing_time = handler_output.get("processing_time", "N/A")
|
49 |
+
evaluation_results = handler_output.get("evaluation_results", {})
|
50 |
+
|
51 |
+
return {
|
52 |
+
"model_name": model_name,
|
53 |
+
"processing_time": processing_time,
|
54 |
+
"evaluation_results": evaluation_results
|
55 |
+
}
|
56 |
+
else:
|
57 |
+
# Return error details from the handler output
|
58 |
+
return handler_output
|
59 |
|
60 |
except FileNotFoundError:
|
61 |
return {"status": "error", "details": "Handler script not found"}
|
62 |
except Exception as e:
|
63 |
return {"status": "error", "details": str(e)}
|
64 |
|
65 |
+
|
66 |
# Define Gradio interface
|
67 |
with gr.Blocks(css='''
|
68 |
.gradio-container {
|
|
|
136 |
# Layout structure with improved spacing
|
137 |
with gr.Row():
|
138 |
with gr.Column(scale=2):
|
139 |
+
pdf_file = gr.File(label="Upload PDF File", file_types=[".pdf"]) # Updated to accept file uploads
|
140 |
with gr.Column(scale=3):
|
141 |
system_prompt = gr.Textbox(label="System Prompt", placeholder="Enter system instructions or context", value="You are a helpful assistant that provides detailed information based on the provided text.")
|
142 |
with gr.Column(scale=2):
|