This quickstart shows how to start logging your retrievals from your vector datastore to Phoenix and run evaluations.
Notebooks
Follow our tutorial in a notebook with our Langchain and LlamaIndex integrations
Framework
Phoenix Inferences
Phoenix Traces & Spans
Logging Retrievals to Phoenix (as Inferences)
Step 1: Logging Knowledge Base
The first thing we need is to collect some sample from your vector store, to be able to compare against later. This is to able to see if some sections are not being retrieved, or some sections are getting a lot of traffic where you might want to beef up your context or documents in that area.
In order to run retrieval Evals the following code can be used for quick analysis of common frameworks of LangChain and LlamaIndex.
Independent of the framework you are instrumenting, Phoenix traces allow you to get retrieval data in a common dataframe format that follows the OpenInference specification.
# Get traces from Phoenix into dataframe spans_df = px.active_session().get_spans_dataframe()spans_df[["name","span_kind","attributes.input.value","attributes.retrieval.documents"]].head()from phoenix.session.evaluation import get_qa_with_reference, get_retrieved_documentsretrieved_documents_df =get_retrieved_documents(px.active_session())queries_df =get_qa_with_reference(px.active_session())
Once the data is in a dataframe, evaluations can be run on the data. Evaluations can be run on on different spans of data. In the below example we run on the top level spans that represent a single trace.
Q&A and Hallucination Evals
This example shows how to run Q&A and Hallucnation Evals with OpenAI (many other models are available including Anthropic, Mixtral/Mistral, Gemini, OpenAI Azure, Bedrock, etc...)
from phoenix.trace import SpanEvaluations, DocumentEvaluationsfrom phoenix.evals import ( HALLUCINATION_PROMPT_RAILS_MAP, HALLUCINATION_PROMPT_TEMPLATE, QA_PROMPT_RAILS_MAP, QA_PROMPT_TEMPLATE, OpenAIModel, llm_classify,)# Creating Hallucination Eval which checks if the application hallucinatedhallucination_eval =llm_classify( dataframe=queries_df, model=OpenAIModel("gpt-4-turbo-preview", temperature=0.0), template=HALLUCINATION_PROMPT_TEMPLATE, rails=list(HALLUCINATION_PROMPT_RAILS_MAP.values()), provide_explanation=True, # Makes the LLM explain its reasoning concurrency=4,)hallucination_eval["score"]= ( hallucination_eval.label[~hallucination_eval.label.isna()]=="factual").astype(int)# Creating Q&A Eval which checks if the application answered the question correctlyqa_correctness_eval =llm_classify( dataframe=queries_df, model=OpenAIModel("gpt-4-turbo-preview", temperature=0.0), template=QA_PROMPT_TEMPLATE, rails=list(QA_PROMPT_RAILS_MAP.values()), provide_explanation=True, # Makes the LLM explain its reasoning concurrency=4,)qa_correctness_eval["score"]= ( hallucination_eval.label[~qa_correctness_eval.label.isna()]=="correct").astype(int)# Logs the Evaluations back to the Phoenix User Interface (Optional)px.Client().log_evaluations(SpanEvaluations(eval_name="Hallucination", dataframe=hallucination_eval),SpanEvaluations(eval_name="QA Correctness", dataframe=qa_correctness_eval),)
The Evals are available in dataframe locally and can be materilazed back to the Phoenix UI, the Evals are attached to the referenced SpanIDs.
The snipit of code above links the Evals back to the spans they were generated against.
Retrieval Chunk Evals
Retrieval Evals are run on the individual chunks returned on retrieval. In addition to calculating chunk level metrics, Phoenix also calculates MRR and NDCG for the retrieved span.