Removing Duplicate Eval Annotations in Phoenix UI
I am pushing eval annotations to my Phoenix instance on my server. Part of the function I am running is below. Everything works but I changed the eval_name from relevance to Relevance. Now I have both relevance and Relevance showing up in my UI. How can I remove the annotation relevance from my UI? Is this something I need to remove in the logs?
# Create and log evaluations
evaluations = SpanEvaluations(eval_name="Relevance", dataframe=dataframe)
client.log_evaluations(evaluations, project_name="rag_reviews")
print("Evaluations logged successfully to Phoenix.")
except Exception as e:
print(f"An error occurred while logging evaluations: {e}")