mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-12 12:21:01 +00:00
10 lines
356 B
Python
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)
|