AIML解释器-objective c-gui
我想创建一个 Objective C 应用程序来解释 .aiml 文件列表,然后为其创建一个 GUI。我想这样做,以便我可以与应用程序中的aiml 文件聊天。
关于如何做到这一点有什么想法吗?示例代码?以前有人这样做过吗?
谢谢!
以利亚
I want to create an objective c application that interprets a list of .aiml files then make a GUI for it. I want to do this so I can chat with the aiml files within the application.
Any ideas on how to do this?? Sample code? has anyone done this before?
Thanks!
Elijah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一些示例代码可用于创建聊天应用程序;例如,Chatty + MYNetwork(Mooseyard Networking Library,具有 BLIP 协议实现):
http://bitbucket .org/snej/chatty/wiki/Home
There is some sample code that can be useful for creating a chatting application; for example, Chatty + MYNetwork (Mooseyard Networking Library, with BLIP protocol implementation):
http://bitbucket.org/snej/chatty/wiki/Home
我可以看到两种方法来做到这一点:
因此,获得一个客观的 c/xcode 接口来将消息发送到 Web 服务,然后该 Web 服务使用标准引擎。
不幸的是,这意味着不会有离线方法,尽管这也意味着您可以在多个设备上使用相同的方法,而只需最少的返工。
I can see two ways to do this:
So get an objective c/xcode interface to send messages to a webservice which then uses the standard engine.
Unfortunately this will mean there will be no offline approach, although it will also mean you can use the same approach on multiple devices with minimal rework.