tykiww commited on
Commit
f234c31
·
verified ·
1 Parent(s): 0fb279d

Create utilities/setup.py

Browse files
Files changed (1) hide show
  1. 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
+ }