Spaces:
Runtime error
Runtime error
Commit
·
ea04f09
1
Parent(s):
4ae374b
chore: fix
Browse files- main.py +1 -1
- src/agent/tools/conversation.py +3 -1
main.py
CHANGED
@@ -43,7 +43,7 @@ class LoggingDisabled:
|
|
43 |
|
44 |
def main():
|
45 |
app = Application.builder().token(
|
46 |
-
'6207542226:
|
47 |
|
48 |
run_agent(
|
49 |
agent=GirlfriendGPT(
|
|
|
43 |
|
44 |
def main():
|
45 |
app = Application.builder().token(
|
46 |
+
'6207542226:AAF7QGjQ1QBClmpsANrVFN_iUl3orzEA030',).build()
|
47 |
|
48 |
run_agent(
|
49 |
agent=GirlfriendGPT(
|
src/agent/tools/conversation.py
CHANGED
@@ -50,5 +50,7 @@ class Conversation():
|
|
50 |
message = update.message.text
|
51 |
instruction = f'Instruction: given a dialog context, you need to response empathically.'
|
52 |
knowledge = ''
|
53 |
-
|
|
|
|
|
54 |
await update.message.reply_text(f'{text}')
|
|
|
50 |
message = update.message.text
|
51 |
instruction = f'Instruction: given a dialog context, you need to response empathically.'
|
52 |
knowledge = ''
|
53 |
+
dialog = []
|
54 |
+
dialog .append(message)
|
55 |
+
text = self.generate(instruction, knowledge, dialog)
|
56 |
await update.message.reply_text(f'{text}')
|