コード例 #1
0
import random

import getresponse as gr
import produce_response as pr
from parser import parser

print("\n")
print("Talk to the bot!")
line = ""
while line not in ("q", "quit", "x", "exit", "Q", "X"):
    line = raw_input("Chat:")
    result_list = pr.respond(line)
    result = result_list.pop()
    # choose a random one, heavily weighing ones near the beginning
    while random.randrange(4) != 0:
        result = result_list.pop()
    print(gr.getResponse(result))
コード例 #2
0
ファイル: prtest.py プロジェクト: serversquared/VirtualMimic
import produce_response as pr
print(pr.respond("Hello I would like to inquire as to the expeiriences of what common sentences you may know about in the current time frame"))