Spaces:
Runtime error
Runtime error
fix syntax error
Browse files- .gitignore +1 -0
- 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
|
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)
|