Spaces:
Sleeping
Sleeping
Create templates.py
Browse files- utilities/templates.py +14 -0
utilities/templates.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
def prompt_template():
|
4 |
+
return """Below is an instruction that describes a task, paired with a snippet of a meeting transcript for context. Write a response that appropriately completes the request.
|
5 |
+
|
6 |
+
### Instruction:
|
7 |
+
{}
|
8 |
+
|
9 |
+
### Transcript Snippet:
|
10 |
+
{}
|
11 |
+
|
12 |
+
### Response:
|
13 |
+
{}
|
14 |
+
"""
|