You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use normal JSON format instead of form data if we use form data we need perform extra parsing to convert that to JSON which hinders the performance
Ex:
context_list = [str(item).strip() for item in json.loads(context)] if context else []
answer_list = [str(item).strip() for item in json.loads(answer)] if answer else []
mode_list = [str(item).strip() for item in json.loads(mode)] if mode else []
The text was updated successfully, but these errors were encountered:
We can use normal JSON format instead of form data if we use form data we need perform extra parsing to convert that to JSON which hinders the performance
Ex:
The text was updated successfully, but these errors were encountered: