paopaoka3325 commited on
Commit
4c644f1
·
1 Parent(s): c129d7d

Add application files

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -38,6 +38,20 @@ def greet(name1, name2):
38
  output = run_command(f"cancerontogpt extract -t cancer.CancerAnnotations -i ./abstractsave.txt")
39
 
40
  output = output[0].replace('\\n', '\n')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  #### output_string1, error_string1=run_command("poetry")# ontogpt")
43
 
 
38
  output = run_command(f"cancerontogpt extract -t cancer.CancerAnnotations -i ./abstractsave.txt")
39
 
40
  output = output[0].replace('\\n', '\n')
41
+
42
+ # Find the positions of the start and end markers
43
+ start_marker = "raw_completion_output: |-"
44
+ end_marker = "prompt: "
45
+ start_position = output.find(start_marker)
46
+ end_position = output.find(end_marker)
47
+
48
+ # Extract the text between the start and end positions
49
+ output = output[start_position + len(start_marker):end_position].strip()
50
+
51
+ # Output the extracted text
52
+ output
53
+
54
+
55
 
56
  #### output_string1, error_string1=run_command("poetry")# ontogpt")
57