Getting Started
Improve and evaluate your LLM applications with a few simple steps
Setup A Python Environment
python3 -m venv env
source venv/bin/activateInstallation
pip install farsightaiEvaluate Your First Metric
from farsightai import FarsightAI
# Replace with your openAI credentials
OPEN_AI_KEY = "<openai_key>"
query = "Who is the president of the United States"
farsight = FarsightAI(openai_key=OPEN_AI_KEY)
# Replace this with the actual output of your LLM application
output = "As of my last knowledge update in January 2022, Joe Biden is the President of the United States. However, keep in mind that my information might be outdated as my training data goes up to that time, and I do not have browsing capabilities to check for the most current information. Please verify with up-to-date sources."
quality_score = farsight.quality_score(query, output)
print("score: ", quality_score)
# score: 4Create Your First Custom Metric
Auto-Generate High-Quality Potential System Prompts
Prompt Optimization
Suggested Starter Workflow
Last updated