jaifar530 commited on
Commit
865019b
·
unverified ·
1 Parent(s): 9a042e3

fixed get_entities

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -21,7 +21,12 @@ headers = {"Authorization": "Bearer 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"}
21
  def get_entities(text):
22
  data = {"inputs": text}
23
  response = requests.post(API_URL, headers=headers, json=data)
24
- entities = [item['entity_group'] for item in response.json()[0]]
 
 
 
 
 
25
  return len(entities)
26
 
27
  # Set up lemmatizer
 
21
  def get_entities(text):
22
  data = {"inputs": text}
23
  response = requests.post(API_URL, headers=headers, json=data)
24
+ try:
25
+ entities = [item['entity_group'] for item in response.json()[0]]
26
+ except Exception as e:
27
+ print("Error:", e)
28
+ print("Response:", response.content)
29
+ entities = []
30
  return len(entities)
31
 
32
  # Set up lemmatizer