Spaces:
Running
Running
Commit
·
4b96e78
1
Parent(s):
b25cc16
add requiretment
Browse files
app.py
CHANGED
@@ -9,15 +9,23 @@ def greet(name1, name2, name3, name4, name5):
|
|
9 |
str4 = name4
|
10 |
str5 = name5
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
|
22 |
|
23 |
# For the purpose of this example, I'm just returning the values concatenated
|
|
|
9 |
str4 = name4
|
10 |
str5 = name5
|
11 |
|
12 |
+
def run_command(command):
|
13 |
+
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
14 |
+
|
15 |
+
output_string = result.stdout
|
16 |
+
error_string = result.stderr
|
17 |
+
|
18 |
+
if output_string:
|
19 |
+
print("Output:")
|
20 |
+
print(output_string)
|
21 |
+
|
22 |
+
if error_string:
|
23 |
+
print("Errors:")
|
24 |
+
print(error_string)
|
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
|