Create prompts.py
Browse files- llm/prompts.py +13 -0
llm/prompts.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Add here more example by template, id should be intergers from 1 to 100_000,
|
2 |
+
# in description provides base overview of the template and rate is int from 0 to 10
|
3 |
+
prompts = [
|
4 |
+
{
|
5 |
+
"id": 1,
|
6 |
+
"prompt_template": """
|
7 |
+
Question: {question}
|
8 |
+
Answer: Write a concise answer on the question with one example if it's possible. CONCISE ANSWER.
|
9 |
+
""",
|
10 |
+
"description": "simple concise prompt",
|
11 |
+
"rate": 3
|
12 |
+
}
|
13 |
+
]
|