paopaoka3325 commited on
Commit
4b96e78
·
1 Parent(s): b25cc16

add requiretment

Browse files
Files changed (1) hide show
  1. app.py +16 -8
app.py CHANGED
@@ -9,15 +9,23 @@ def greet(name1, name2, name3, name4, name5):
9
  str4 = name4
10
  str5 = name5
11
 
12
- # Construct the command
13
- command = f"poetry run runoak set-apikey -e openai {str1}"
14
-
15
- # Execute the command
16
- result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
 
 
 
 
 
 
 
 
17
 
18
- # Save the output to a string
19
- output_string = result.stdout
20
- error_string = result.stderr
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