elshehawy commited on
Commit
3f2b796
Β·
1 Parent(s): 080ce23

update prompt

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -44,7 +44,11 @@ def find_orgs_gpt(sentence):
44
  ```
45
  {sentence}
46
  ```
47
- You should output only a list of organizations and follow this output format exactly: ["org_1", "org_2", "org_3"], or [] if there are no organizations.
 
 
 
 
48
  """
49
 
50
  sent_orgs_str = get_completion(prompt)
 
44
  ```
45
  {sentence}
46
  ```
47
+ Your output should be a Python list that containes the extracted organizations.
48
+ Output example 1:
49
+ ["Organization 1", "Organization 2", "Organization 3"]
50
+ Output example 2:
51
+ []
52
  """
53
 
54
  sent_orgs_str = get_completion(prompt)