I'm struggling with calling the Client function for log prediction. 10 # Log prediction
---> 11 arize_client.log_prediction(
12 model_id='your_model_id',
13 prediction=final_answer, # You may need to adjust this depending on what you want to log
14 features=question, # Use the question as a feature
15 ground_truth=final_answer, # Use the SQL result as ground truth
16 )
AttributeError: 'Client' object has no attribute 'log_prediction'