Spaces:
Running
Running
Commit
·
a89bfdf
1
Parent(s):
4b96e78
add requiretment
Browse files- app.py +7 -11
- requirement.txt +0 -1
app.py
CHANGED
@@ -15,21 +15,17 @@ def greet(name1, name2, name3, name4, name5):
|
|
15 |
output_string = result.stdout
|
16 |
error_string = result.stderr
|
17 |
|
18 |
-
|
19 |
-
print("Output:")
|
20 |
-
print(output_string)
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
run_command("pip install optogpt")
|
27 |
-
run_command("curl -sSL https://install.python-poetry.org | python3 -")
|
28 |
-
run_command(f"poetry run runoak set-apikey -e openai {str1}")
|
29 |
|
30 |
|
31 |
# For the purpose of this example, I'm just returning the values concatenated
|
32 |
-
return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5},
|
|
|
|
|
33 |
|
34 |
# Define 5 text input boxes with labels
|
35 |
input_boxes = [
|
|
|
15 |
output_string = result.stdout
|
16 |
error_string = result.stderr
|
17 |
|
18 |
+
return output_string, error_string
|
|
|
|
|
19 |
|
20 |
+
output_string1, error_string1= run_command("pip install optogpt")
|
21 |
+
# run_command("curl -sSL https://install.python-poetry.org | python3 -")
|
22 |
+
output_string2, error_string2= run_command(f"poetry run runoak set-apikey -e openai {str1}")
|
|
|
|
|
|
|
|
|
23 |
|
24 |
|
25 |
# For the purpose of this example, I'm just returning the values concatenated
|
26 |
+
return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5},
|
27 |
+
{output_string1},{error_string1}, {output_string2},{error_string2}
|
28 |
+
"
|
29 |
|
30 |
# Define 5 text input boxes with labels
|
31 |
input_boxes = [
|
requirement.txt
CHANGED
@@ -1,2 +1 @@
|
|
1 |
ontogpt
|
2 |
-
poetry
|
|
|
1 |
ontogpt
|
|