mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
16 lines
447 B
JSON
16 lines
447 B
JSON
{
|
|
"_type": "few_shot",
|
|
"input_variables": ["adjective"],
|
|
"prefix": "Write antonyms for the following words.",
|
|
"example_prompt": {
|
|
"_type": "prompt",
|
|
"input_variables": ["input", "output"],
|
|
"template": "Input: {input}\nOutput: {output}"
|
|
},
|
|
"examples": [
|
|
{"input": "happy", "output": "sad"},
|
|
{"input": "tall", "output": "short"}
|
|
],
|
|
"suffix": "Input: {adjective}\nOutput:"
|
|
}
|