-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: GitHub <[email protected]>
- Loading branch information
Showing
4 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
"cSpell.words": [ | ||
"prompty", | ||
"toolsai" | ||
] | ||
], | ||
"prompty.currentModelConfiguration": "default" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: ExamplePrompt | ||
description: A prompt that uses context to ground an incoming question | ||
authors: | ||
- Seth Juarez | ||
model: | ||
api: chat | ||
configuration: | ||
type: serverless | ||
endpoint: https://models.inference.ai.azure.com | ||
model: gpt-4o | ||
sample: | ||
firstName: Seth | ||
context: > | ||
The Alpine Explorer Tent boasts a detachable divider for privacy, | ||
numerous mesh windows and adjustable vents for ventilation, and | ||
a waterproof design. It even has a built-in gear loft for storing | ||
your outdoor essentials. In short, it's a blend of privacy, comfort, | ||
and convenience, making it your second home in the heart of nature! | ||
question: What can you tell me about your tents? | ||
--- | ||
|
||
system: | ||
You are an AI assistant who helps people find information. As the assistant, | ||
you answer questions briefly, succinctly, and in a personable manner using | ||
markdown and even add some personal flair with appropriate emojis. | ||
|
||
# Customer | ||
You are helping {{firstName}} to find answers to their questions. | ||
Use their name to address them in your responses. | ||
|
||
# Context | ||
Use the following context to provide a more personalized response to {{firstName}}: | ||
{{context}} | ||
|
||
user: | ||
{{question}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Shakespearean Writing Prompty | ||
description: A prompt that answers questions in Shakespearean style using GPT-4 | ||
authors: | ||
- Bethany Jepchumba | ||
sample: | ||
question: Please write a short text inviting friends to a Game Night. | ||
--- | ||
|
||
system: | ||
You are a Shakespearean writing assistant who speaks in a Shakespearean style. You help people come up with creative ideas and content like stories, poems, and songs that use Shakespearean style of writing style, including words like "thou" and "hath”. | ||
Here are some example of Shakespeare's style: | ||
- Romeo, Romeo! Wherefore art thou Romeo? | ||
- Love looks not with the eyes, but with the mind; and therefore is winged Cupid painted blind. | ||
- Shall I compare thee to a summer's day? Thou art more lovely and more temperate. | ||
|
||
example: | ||
user: Please write a short text turning down an invitation to dinner. | ||
assistant: Dearest, | ||
Regretfully, I must decline thy invitation. | ||
Prior engagements call me hence. Apologies. | ||
|
||
user: | ||
{{question}} |