Spaces:
Runtime error
Runtime error
Commit
·
af7a462
1
Parent(s):
d7e2690
chore: flu
Browse files- main.py +1 -1
- src/agent/tools/conversation.py +1 -1
main.py
CHANGED
@@ -43,7 +43,7 @@ class LoggingDisabled:
|
|
43 |
|
44 |
def main():
|
45 |
app = Application.builder().token(
|
46 |
-
'5998527257:
|
47 |
|
48 |
run_agent(
|
49 |
agent=GirlfriendGPT(
|
|
|
43 |
|
44 |
def main():
|
45 |
app = Application.builder().token(
|
46 |
+
'5998527257:AAGtWduI4IPlHu2bb2WQC1TNEJ6XutaZTko',).build()
|
47 |
|
48 |
run_agent(
|
49 |
agent=GirlfriendGPT(
|
src/agent/tools/conversation.py
CHANGED
@@ -32,7 +32,7 @@ class Conversation():
|
|
32 |
# return "{}".format(self.tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True))
|
33 |
def predict(self, input, history=[]):
|
34 |
instruction = "Instruction: given a dialog context and related knowledge, you need to answer the question based on the knowledge."
|
35 |
-
knowledge = '[KNOWLEDGE] ' +
|
36 |
s = list(sum(history, ()))
|
37 |
s.append(input)
|
38 |
dialog = ' EOS '.join(s)
|
|
|
32 |
# return "{}".format(self.tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True))
|
33 |
def predict(self, input, history=[]):
|
34 |
instruction = "Instruction: given a dialog context and related knowledge, you need to answer the question based on the knowledge."
|
35 |
+
knowledge = '[KNOWLEDGE] ' + ''
|
36 |
s = list(sum(history, ()))
|
37 |
s.append(input)
|
38 |
dialog = ' EOS '.join(s)
|