mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-29 05:18:47 +00:00
10 lines
327 B
Python
10 lines
327 B
Python
from pilot.prompts.example_base import ExampleSelector
|
|
|
|
## Two examples are defined by default
|
|
EXAMPLES = [
|
|
[{"System": "123"},{"System":"xxx"},{"User":"xxx"},{"Assistant":"xxx"}],
|
|
[{"System": "123"},{"System":"xxx"},{"User":"xxx"},{"Assistant":"xxx"}]
|
|
]
|
|
|
|
example = ExampleSelector(examples=EXAMPLES, use_example=True)
|