From 5ebc6304a4869d469ccb1e36157ab388f376958b Mon Sep 17 00:00:00 2001 From: dholani Date: Sun, 24 Aug 2025 16:43:41 +0530 Subject: [PATCH] Create Me.yml --- Me.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Me.yml diff --git a/Me.yml b/Me.yml new file mode 100644 index 000000000..1648d920e --- /dev/null +++ b/Me.yml @@ -0,0 +1,23 @@ +name: Text Summarizer +description: Summarizes input text concisely +model: openai/gpt-4o-mini +modelParameters: + temperature: 0.5 +messages: + - role: system + content: You are a text summarizer. Your only job is to summarize text given to you. + - role: user + content: | + Summarize the given text, beginning with "Summary -": + + {{input}} + +testData: + - input: | + The quick brown fox jumped over the lazy dog. + The dog was too tired to react. + expected: Summary - A fox jumped over a lazy, unresponsive dog. +evaluators: + - name: Output should start with 'Summary -' + string: + startsWith: 'Summary -'