elshehawy commited on
Commit
a4d1088
·
1 Parent(s): 3736d72

fix syntax error

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -1
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .ipynb_checkpoints/
app.py CHANGED
@@ -42,7 +42,7 @@ def find_orgs(sentence, choice):
42
  ```
43
  You should always start your answer with "Organizations are: "
44
  """
45
- if choice='GPT':
46
  return get_completion(prompt)
47
  else:
48
  return pipe(sentence)
 
42
  ```
43
  You should always start your answer with "Organizations are: "
44
  """
45
+ if choice=='GPT':
46
  return get_completion(prompt)
47
  else:
48
  return pipe(sentence)