Spaces:
Runtime error
Runtime error
fix prompt to work with f string
Browse files
app.py
CHANGED
@@ -48,9 +48,9 @@ def find_orgs_gpt(sentence):
|
|
48 |
```
|
49 |
Your output should be a a json object that containes the extracted organizations.
|
50 |
Output example 1:
|
51 |
-
{"Organizations": ["Organization 1", "Organization 2", "Organization 3"]}
|
52 |
Output example 2:
|
53 |
-
{"Organizations": []}
|
54 |
"""
|
55 |
|
56 |
sent_orgs_str = get_completion(prompt)
|
|
|
48 |
```
|
49 |
Your output should be a a json object that containes the extracted organizations.
|
50 |
Output example 1:
|
51 |
+
{{\"Organizations\": [\"Organization 1\", \"Organization 2\", \"Organization 3\"]}}
|
52 |
Output example 2:
|
53 |
+
{{\"Organizations\": []}}
|
54 |
"""
|
55 |
|
56 |
sent_orgs_str = get_completion(prompt)
|