Uptrain Logo

API Keys

How it Works

from uptrain import APIClient, Evals, CritiqueTone import json UPTRAIN_API_KEY = "default_key" data = [{ 'question': 'Which is the most popular global sport?', 'context': "The popularity of sports can be measured in various ways, including TV viewership, social media presence, number of participants, and economic impact. Football is undoubtedly the world's most popular sport with major events like the FIFA World Cup and sports personalities like Ronaldo and Messi, drawing a followership of more than 4 billion people. ", 'response': 'Football is the most popular sport with around 4 billion followers worldwide' }] client = APIClient(uptrain_api_key=UPTRAIN_API_KEY) results = client.log_and_evaluate( project_name="Sample-Project", data=data, checks=[Evals.CONTEXT_RELEVANCE, Evals.FACTUAL_ACCURACY, Evals.RESPONSE_RELEVANCE, CritiqueTone(persona="teacher")] ) print(json.dumps(results, indent=3))