Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
penguine-ip committed Jan 22, 2025
1 parent fabf66a commit 0f22585
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions deepeval/test_run/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
from deepeval.test_run.cache import global_test_run_cache_manager

TEMP_FILE_NAME = "temp_test_run_data.json"
LOGIN_PROMPT = "\n‼️ Looking for a place for your test data to live 🏡? Use Confident AI for test reports, benchmark analysis, compare models/prompts, and catch regressions for your LLM system."


class TestRunResultDisplay(Enum):
Expand Down Expand Up @@ -714,8 +715,8 @@ def post_test_run(self, test_run: TestRun) -> Optional[str]:

console.print(
"[rgb(5,245,141)]✓[/rgb(5,245,141)] Tests finished 🎉! View results on "
f"[link={link}]{link}[/link]."
"\n‼️ Looking for a place for your test data to live 🏡? Use Confident AI for test reports, benchmark analysis, compare models/prompts, and catch regressions for your LLM system."
f"[link={link}]{link}[/link].",
LOGIN_PROMPT,
)

if is_in_ci_env() == False:
Expand All @@ -724,8 +725,8 @@ def post_test_run(self, test_run: TestRun) -> Optional[str]:
return link
else:
console.print(
"[rgb(5,245,141)]✓[/rgb(5,245,141)] Tests finished 🎉! Run 'deepeval login' to save and analyze evaluation results on Confident AI. "
"\n‼️ Looking for a place for your test data to live 🏡? Use Confident AI for test reports, benchmark analysis, compare models/prompts, and catch regressions for your LLM system."
"[rgb(5,245,141)]✓[/rgb(5,245,141)] Tests finished 🎉! Run 'deepeval login' to save and analyze evaluation results on Confident AI. ",
LOGIN_PROMPT,
)

def save_test_run_locally(self):
Expand Down

0 comments on commit 0f22585

Please sign in to comment.