Spaces:
Runtime error
Runtime error
update prompt to handle the case of no organizations
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ 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"]
|
48 |
"""
|
49 |
|
50 |
sent_orgs_str = get_completion(prompt)
|
|
|
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)
|