Files
DB-GPT/pilot/scene/chat_execution/example.py
aries_ckt 4029f48d5f style:format code style
format code style
2023-06-29 13:52:53 +08:00

10 lines
356 B
Python

from pilot.prompts.example_base import ExampleSelector
## Two examples are defined by default
EXAMPLES = [
[{"system": "123"}, {"system": "xxx"}, {"human": "xxx"}, {"assistant": "xxx"}],
[{"system": "123"}, {"system": "xxx"}, {"human": "xxx"}, {"assistant": "xxx"}],
]
plugin_example = ExampleSelector(examples_record=EXAMPLES, use_example=True)