Spaces:
Sleeping
Sleeping
File size: 839 Bytes
0dc9888 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
from bridge.context import *
from channel.channel import Channel
import sys
class TerminalChannel(Channel):
def startup(self):
context = Context()
print("\nPlease input your question")
while True:
try:
prompt = self.get_input("User:\n")
except KeyboardInterrupt:
print("\nExiting...")
sys.exit()
context.type = ContextType.TEXT
context['session_id'] = "User"
context.content = prompt
print("Bot:")
sys.stdout.flush()
res = super().build_reply_content(prompt, context).content
print(res)
def get_input(self, prompt):
"""
Multi-line input function
"""
print(prompt, end="")
line = input()
return line
|