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
#There is a missing field inside the df_logs, column response, field ['context']['system']
#Let's add it
field_to_add = {'system':{}}
for index, row in df_logs.iterrows():
row['response']['context'].update(field_to_add)
# Format the logs data from the workspace
df_formatted = format_data(df_logs)
When trying to format my log data in jupyter notebook (local) i get this error:
KeyError: "['response_context_system'] not found in axis"
It is just two lines of logs extracted today (22/09) and I'm using assistant-improve-toolkit==1.3.6 and python 3.7.10
The text was updated successfully, but these errors were encountered: