Spaces:
Running
Running
Commit
·
bb0161f
1
Parent(s):
5769515
Add application files
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def greet(name1, name2):
|
|
21 |
|
22 |
with open('abstractsave.txt', 'w') as f:
|
23 |
f.write(str4_input)
|
24 |
-
|
25 |
def run_command(command):
|
26 |
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
27 |
|
@@ -49,17 +49,25 @@ def greet(name1, name2):
|
|
49 |
# Extract the text between the start and end positions
|
50 |
output = output[start_position + len(start_marker):end_position].strip()
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
return
|
63 |
|
64 |
#### output_string1, error_string1=run_command("poetry")# ontogpt")
|
65 |
|
|
|
21 |
|
22 |
with open('abstractsave.txt', 'w') as f:
|
23 |
f.write(str4_input)
|
24 |
+
|
25 |
def run_command(command):
|
26 |
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
27 |
|
|
|
49 |
# Extract the text between the start and end positions
|
50 |
output = output[start_position + len(start_marker):end_position].strip()
|
51 |
|
52 |
+
|
53 |
+
# Splitting the data string into lines and then split each line into key-value pairs
|
54 |
+
key_value_pairs = [line.split(": ", 1) for line in output.split("\n")[1:] if line.strip()]
|
55 |
+
|
56 |
+
key_value_pairs = [[format_identifier(x[0]), *x[1:]] for x in key_value_pairs]
|
57 |
+
|
58 |
+
# Convert the key-value pairs into a table format (a list of lists)
|
59 |
+
df_pred = pd.DataFrame(key_value_pairs, columns = ["Attribute", "Value"])
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
|
64 |
+
# data = {
|
65 |
+
# "Name": ['fawef', 'fseaf', 'asef'],
|
66 |
+
# "Age": [30, 25, 35],
|
67 |
+
# "City": ["New York", "San Francisco", "Los Angeles"]
|
68 |
+
# }
|
69 |
+
# df = pd.DataFrame(data)
|
70 |
+
return df_pred.to_html()
|
71 |
|
72 |
#### output_string1, error_string1=run_command("poetry")# ontogpt")
|
73 |
|