Spaces:
Running
Running
Commit
·
1ecd2bc
1
Parent(s):
2ec9a90
Add application files
Browse files
app.py
CHANGED
@@ -12,32 +12,32 @@ demo.launch()
|
|
12 |
'''
|
13 |
def greet(name1, name2):
|
14 |
# Storing each input in a variable, you can process or save them as you like
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
|
20 |
|
21 |
with open('abstractsave.txt', 'w') as f:
|
22 |
-
f.write(
|
23 |
|
24 |
-
|
25 |
-
|
26 |
|
27 |
-
|
28 |
-
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
# output = run_command(f"ontogpt extract -t gocam.GoCamAnnotations -i ./abstract.txt")
|
38 |
-
|
39 |
|
40 |
-
|
41 |
|
42 |
|
43 |
# return location
|
@@ -45,7 +45,7 @@ def greet(name1, name2):
|
|
45 |
# return f"Inputs received: {str1} \n, {str2}, {str3}, {str4}, '--------------', '--------------', {output_string1},{error_string1},{output_string2},{error_string2},{output}"
|
46 |
# # return location
|
47 |
# For the purpose of this example, I'm just returning the values concatenated
|
48 |
-
return f"{
|
49 |
|
50 |
# Define 5 text input boxes with labels
|
51 |
input_boxes = [
|
|
|
12 |
'''
|
13 |
def greet(name1, name2):
|
14 |
# Storing each input in a variable, you can process or save them as you like
|
15 |
+
str1_openai = name1 ## openai
|
16 |
+
str2_bioportal = "213e22ba-4c3b-402b-bd36-6e9d4e86b1b5" #bioportal
|
17 |
+
str3_huggingface = "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" # huggingface
|
18 |
+
str4_input = name2
|
19 |
|
20 |
|
21 |
with open('abstractsave.txt', 'w') as f:
|
22 |
+
f.write(str4_input)
|
23 |
|
24 |
+
def run_command(command):
|
25 |
+
result = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
26 |
|
27 |
+
output_string = result.stdout
|
28 |
+
error_string = result.stderr
|
29 |
|
30 |
+
return output_string, error_string
|
31 |
|
32 |
+
##### output_string1, error_string1= run_command("pip install optogpt")
|
33 |
+
output_string1, error_string1 = run_command("curl -sSL https://install.python-poetry.org | python3 -")
|
34 |
+
output_string2, error_string2 = run_command(f"poetry run runoak set-apikey -e openai {str1_openai}")
|
35 |
+
run_command(f"poetry run runoak set-apikey -e bioportal {str2_bioportal}")
|
36 |
+
run_command(f"poetry run runoak set-apikey -e hfhub-key {str3_huggingface}")
|
37 |
# output = run_command(f"ontogpt extract -t gocam.GoCamAnnotations -i ./abstract.txt")
|
38 |
+
output = run_command(f"cancerontogpt extract -t cancer.CancerAnnotations -i ./abstractsave.txt")
|
39 |
|
40 |
+
#### output_string1, error_string1=run_command("poetry")# ontogpt")
|
41 |
|
42 |
|
43 |
# return location
|
|
|
45 |
# return f"Inputs received: {str1} \n, {str2}, {str3}, {str4}, '--------------', '--------------', {output_string1},{error_string1},{output_string2},{error_string2},{output}"
|
46 |
# # return location
|
47 |
# For the purpose of this example, I'm just returning the values concatenated
|
48 |
+
return f"{output}"
|
49 |
|
50 |
# Define 5 text input boxes with labels
|
51 |
input_boxes = [
|