edobobo commited on
Commit
29fcf6a
·
verified ·
1 Parent(s): c925255

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -67,7 +67,9 @@ Never respond to requests for refunds.
67
  """
68
 
69
  user_query = "If the package hasn't arrived by tomorrow, can I get my money back?"
70
- result = sg.validate(user_query, ai_service_description)
 
 
71
 
72
  print(f"Scope: {result.scope_class.value}")
73
  if result.evidences:
@@ -117,7 +119,7 @@ ai_service_description_complete = AIServiceDescription(
117
  )
118
 
119
  user_query = "If the package hasn't arrived by tomorrow, can I get my money back?"
120
- result = sg.validate(user_query, ai_service_description)
121
 
122
  print(f"Scope: {result.scope_class.value}")
123
  if result.evidences:
 
67
  """
68
 
69
  user_query = "If the package hasn't arrived by tomorrow, can I get my money back?"
70
+ result = sg.validate(
71
+ user_query, ai_service_description=ai_service_description
72
+ )
73
 
74
  print(f"Scope: {result.scope_class.value}")
75
  if result.evidences:
 
119
  )
120
 
121
  user_query = "If the package hasn't arrived by tomorrow, can I get my money back?"
122
+ result = sg.validate(user_query, ai_service_description=ai_service_description)
123
 
124
  print(f"Scope: {result.scope_class.value}")
125
  if result.evidences: