Spaces:
Sleeping
Sleeping
app.py
CHANGED
@@ -33,17 +33,84 @@ def get_completion(prompt):
|
|
33 |
return lorax_client.generate(prompt, adapter_id=adapter_id, max_new_tokens=1000).generated_text
|
34 |
|
35 |
def greet(input):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
total_prompt=f"""
|
37 |
-
|
38 |
-
<|im_start|>question\n How much are union dues, and what do they cover?\nReturn as a JSON response
|
39 |
-
<|im_start|>answer\n{{"answer": "The union dues for our union is 3%."}}<|im_end|>
|
40 |
|
41 |
-
<|im_start|>system\
|
42 |
<|im_start|>question
|
43 |
-
{input}\
|
44 |
<|im_start|>answer
|
45 |
"""
|
46 |
|
|
|
47 |
print("***total_prompt:")
|
48 |
print(total_prompt)
|
49 |
response = get_completion(total_prompt)
|
|
|
33 |
return lorax_client.generate(prompt, adapter_id=adapter_id, max_new_tokens=1000).generated_text
|
34 |
|
35 |
def greet(input):
|
36 |
+
sys_str = "You are a helpful support assistant. Answer the following question."
|
37 |
+
qa_list = []
|
38 |
+
n_prompt_list = []
|
39 |
+
qa_list.append({
|
40 |
+
"question": "What are the benefits of joining a union?",
|
41 |
+
"answer": "Collective bargaining of salary."
|
42 |
+
})
|
43 |
+
|
44 |
+
qa_list.append({
|
45 |
+
"question": "How much are union dues, and what do they cover?",
|
46 |
+
"answer": "The union dues for our union is 3%."
|
47 |
+
})
|
48 |
+
|
49 |
+
qa_list.append({
|
50 |
+
"question": "How does the union handle grievances and disputes?",
|
51 |
+
"answer": "There will be a panel to oversee disputes"
|
52 |
+
})
|
53 |
+
|
54 |
+
qa_list.append({
|
55 |
+
"question": "Will joining a union affect my job security?",
|
56 |
+
"answer": "No."
|
57 |
+
})
|
58 |
+
|
59 |
+
qa_list.append({
|
60 |
+
"question": "What is the process for joining a union?",
|
61 |
+
"answer": "Please use the contact form."
|
62 |
+
})
|
63 |
+
|
64 |
+
qa_list.append({
|
65 |
+
"question": "How do unions negotiate contracts with employers?",
|
66 |
+
"answer": "Our dear leader will handle the negotiations."
|
67 |
+
})
|
68 |
+
|
69 |
+
qa_list.append({
|
70 |
+
"question": "What role do I play as a union member?",
|
71 |
+
"answer": "You will be invited to our monthly picnics"
|
72 |
+
})
|
73 |
+
|
74 |
+
qa_list.append({
|
75 |
+
"question": "How do unions ensure that employers comply with agreements?",
|
76 |
+
"answer": "We will have a monthly meeting for members"
|
77 |
+
})
|
78 |
+
|
79 |
+
qa_list.append({
|
80 |
+
"question": "Can I be forced to join a union?",
|
81 |
+
"answer": "What kind of questions is that! Of course no!"
|
82 |
+
})
|
83 |
+
|
84 |
+
qa_list.append({
|
85 |
+
"question": "What happens if I disagree with the union’s decisions?",
|
86 |
+
"answer": "We will agree to disagree"
|
87 |
+
})
|
88 |
+
|
89 |
+
for qna in qa:
|
90 |
+
ques_str = qna["question"]
|
91 |
+
ans_str = qna["answer"]
|
92 |
+
n_prompt_list.append(f"""
|
93 |
+
<|im_start|>system\n{sys_str}<|im_end|>
|
94 |
+
<|im_start|>question\n{ques_str}<|im_end|>
|
95 |
+
<|im_start|>answer\n{ans}<|im_end|>
|
96 |
+
"""
|
97 |
+
)
|
98 |
+
|
99 |
+
n_prompt_str = "\n"
|
100 |
+
|
101 |
+
for prompt in n_prompt_list:
|
102 |
+
n_prompt_str = n_prompt_str + prompt + "\n"
|
103 |
+
|
104 |
total_prompt=f"""
|
105 |
+
{n_prompt_str}
|
|
|
|
|
106 |
|
107 |
+
<|im_start|>system\n{sys_str}<|im_end|>
|
108 |
<|im_start|>question
|
109 |
+
{input}\n<|im_end|>
|
110 |
<|im_start|>answer
|
111 |
"""
|
112 |
|
113 |
+
|
114 |
print("***total_prompt:")
|
115 |
print(total_prompt)
|
116 |
response = get_completion(total_prompt)
|