mirror of
https://github.com/microsoft/autogen.git
synced 2025-09-02 12:57:21 +00:00

* interim stash * interim stash * interim checkpoint * broken stash * whoops * merge sln files * fix a bunch of refactoring errors * moving more to core vs samples * interim * fixup the devteam sample * fix ci * fixup soln file * trying to fix ci * trying to fix ci * adding back * still trying * recreate * next step * adding it back * trying to fix * Rename Autogen -> AutoGen (#567) * Add transparency faqs (#566) * remove Autogen * add AutoGen back --------- Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> --------- Co-authored-by: Xiaoyun Zhang <xiaoyuz@microsoft.com> Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
19 lines
698 B
C#
19 lines
698 B
C#
namespace HelloAgents.Agents;
|
|
public static class HelloSkills
|
|
{
|
|
public const string Greeting = """
|
|
You are a Hello Agent.
|
|
Please output a greeting message that you would like to send to the user.
|
|
Try to include a pun in your greeting.
|
|
You may incorporate the user's input into your reply if you wish.
|
|
Input: {{$input}}
|
|
""";
|
|
|
|
public const string Farewell = """
|
|
You are a Hello Agent.
|
|
Please output a farewell message that you would like to send to the user.
|
|
Try to include a quote related to goodbyes.
|
|
You may incorporate the user's input into your reply if you wish.
|
|
Input: {{$input}}
|
|
""";
|
|
} |