gpt4 book ai didi

java - 使用 chatterbean AIML interpeter 制作爱丽丝机器人

转载 作者:行者123 更新时间:2023-11-30 06:25:36 26 4
gpt4 key购买 nike

<分区>

每当我尝试加载 Alice aiml 文件时,我都会收到有关未找到标签的各种错误,但是当我修复这些错误时,我会收到一个我不知道如何修复的错误。 aiml 的事情没有被实现,但是当我看到它正在实现的 aiml 类时:?我的代码:

public static String input()
{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
//System.out.println("you say>");
String input = "";
try
{
input = in.readLine();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return input;
}




public static void main(String[] args) throws Exception
{
Chat ch=new Chat();
AliceBotMother mother = new AliceBotMother();
mother.setUp();
AliceBot bot = mother.newInstance();
System.err.println(bot.respond("welcome"));
while(true)
{
String input = Chat.input();
// while the user saying 'bye'
if(Chat.END.equalsIgnoreCase(input))
break;
// do some respond..
System.err.println("Alice>" + bot.respond(input));
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com