Create utilities/setup.py
Browse files- utilities/setup.py +22 -0
utilities/setup.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# All helpful setup items.
|
2 |
+
|
3 |
+
# This is the template that was used to train the original model.
|
4 |
+
ALPACA_PROMPT = """Below is a query about a meeting and a snippet of a meeting transcript. Write a response that appropriately completes the request.
|
5 |
+
- Utilize transcript for detailed information.
|
6 |
+
- Stick to transcript and do not incorporate preexisting knowledge to enhance response.
|
7 |
+
- State reasoning behind your decisions.
|
8 |
+
|
9 |
+
### Query:
|
10 |
+
{}
|
11 |
+
|
12 |
+
### Transcript:
|
13 |
+
{}
|
14 |
+
|
15 |
+
### Response:
|
16 |
+
{}"""
|
17 |
+
|
18 |
+
# Use this to input the instruction and prompt
|
19 |
+
PROMPT_SHELL = {
|
20 |
+
'instruction': None,
|
21 |
+
'input': None,
|
22 |
+
}
|