智能聊天机器人实现(源码+析)


前言:

今天带来的是智能聊天机器人实现(源码+解析), 和上一篇教程一样, 当你没有女朋友的时候, 可以用它来打发时间。这里的API是图灵机器人提供的, 实现一个十分强大的机器人。

具体功能包括:

• 支持聊天对话、智能问答
• 拥有笑话、天气、公交等丰富功能
• 支持自然语言处理及语义理解
• 数十亿知识库数据,应有尽有

运行效果:

                                   

源码下载:

源码已经传到git上了, 欢迎下载学习。 

下载链接: https://github.com/colin1994/tulingIOS

源码解析:

一。仿微信界面

如果你觉得这篇文章看起来稍微还有些吃力,或者想要系统地学习人工智能,那么推荐你去看床长人工智能教程。非常棒的大神之作,教程不仅通俗易懂,而且很风趣幽默。点击这里可以查看教程。

这个小demo的界面是仿微信的。只不过是简化版的, 包括表情, 语音什么的, 都省略了。

对于界面这一块, 我这里不多做介绍, 因为这并不是本教程主要内容。毕竟, 这个界面到自己实际项目中的时候, 肯定是需要自定义的。

这里简要介绍一下。

该界面分成两部分: 

1. UITableView: 显示聊天列表, 其中, 左边的是机器人回答, 右边是自己的提问。

另外, 列表的每个cell, 由头像和文字组成。 这个cell是自定义的, 详细可以自己查看源码。

列表添加:

  1. //add UItableView
  2. self.tableView=[[UITableView alloc]initWithFrame:CGRectMake(0, 44, self.view.frame.size.width, self.view.frame.size.height-88) style:UITableViewStylePlain];
  3. [self.tableView registerClass:[ChartCell class] forCellReuseIdentifier:cellIdentifier];
  4. self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone;
  5. self.tableView.allowsSelection = NO;
  6. self.tableView.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"chat_bg_default.jpg"]];
  7. self.tableView.dataSource=self;
  8. self.tableView.delegate=self;
  9. [self.view addSubview:self.tableView];

2. KeyBordVIew: 自定义的UIView, 用来显示自定义的键盘视图。

键盘添加:

  1. //add keyBorad
  2. self.keyBordView=[[KeyBordVIew alloc]initWithFrame:CGRectMake(0, self.view.frame.size.height-44, self.view.frame.size.width, 44)];
  3. self.keyBordView.delegate=self;
  4. [self.view addSubview:self.keyBordView];

另外, 键盘涉及弹出和收起操作操作, 这个需要在视图载入之前, 注册通知, 响应相关操作。

1.注册通知

  1. //注册通知, 键盘收起, 弹出
  2. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardShow:) name:UIKeyboardWillShowNotification object:nil];
  3. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardHide:) name:UIKeyboardWillHideNotification object:nil];

2.响应操作

  1. //键盘弹出响应
  2. -(void)keyboardShow:(NSNotification *)note
  3. {
  4. CGRect keyBoardRect=[note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
  5. CGFloat deltaY=keyBoardRect.size.height;
  6. [UIView animateWithDuration:[note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue] animations:^{
  7. self.view.transform=CGAffineTransformMakeTranslation(0, -deltaY);
  8. }];
  9. }
  10. //键盘收起响应
  11. -(void)keyboardHide:(NSNotification *)note
  12. {
  13. [UIView animateWithDuration:[note.userInfo[UIKeyboardAnimationDurationUserInfoKey] floatValue] animations:^{
  14. self.view.transform = CGAffineTransformIdentity;
  15. }];
  16. }

二。图灵key获取

用过一些第三方API的都知道, 通常我需要先注册成为它的用户, 才能获取对应的key, 以便调用API。

图灵也不例外, 你需要先注册成为图灵用户, 然后有相关教程, 教你如何获取自己的key, 以及正确的URL。这里就不重复了。图灵机器人官网链接

例如, 我这个demo里面的key是:6c2cfaf7a7f088e843b550b0c5b89c26

对应的API是:http://www.tuling123.com/openapi/api?key=6c2cfaf7a7f088e843b550b0c5b89c26&&info=%@

所以, 你只要把这里的key替换成你自己的就可以了。

三。图灵API的使用

这里使用了第三方网络请求库ASI 和 json格式数据解析库 JsonKit。

在导入ASI的时候, 如果你的项目是ARC, 那么, 请将对应的文件设置成支持ARC即可。 (-fno-objc-arc)

另外, 要导入一些框架

SystemConfiguration.framework
MobileCoreServices.framework
CFNetwork.framework
libz.dylib


接着就能利用ASI调用图灵API,再利用jsonkit解析返回的数据了。

具体实现如下:

  1. //每当编辑完问题后
  2. //1. 显示自己的问题 messageType=1
  3. //2. 调用API,返回结果
  4. -(void)KeyBordView:(KeyBordVIew *)keyBoardView textFiledReturn:(UITextField *)textFiled
  5. {
  6. //显示自己的问题
  7. ChartCellFrame *cellFrame=[[ChartCellFrame alloc]init];
  8. ChartMessage *chartMessage=[[ChartMessage alloc]init];
  9. chartMessage.icon=@"icon01.png";
  10. chartMessage.messageType=1;
  11. chartMessage.content=textFiled.text;
  12. cellFrame.chartMessage=chartMessage;
  13. [self.cellFrames addObject:cellFrame];
  14. [self.tableView reloadData];
  15. //滚动到当前行
  16. [self tableViewScrollCurrentIndexPath];
  17. //利用用户问题, 查询结果
  18. //API请求格式。 具体格式见图灵官网
  19. //6c2cfaf7a7f088e843b550b0c5b89c26 替换成你申请的key即可
  20. NSString* urlString = [NSString stringWithFormat:@"http://www.tuling123.com/openapi/api?key=6c2cfaf7a7f088e843b550b0c5b89c26&&info=%@", textFiled.text];
  21. //NSUTF8StringEncoding编码。 避免中文错误
  22. urlString = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
  23. //调用API
  24. NSURL *url = [NSURL URLWithString:urlString];
  25. testRequest = [ASIHTTPRequest requestWithURL:url];
  26. [testRequest setDelegate:self];
  27. [testRequest startAsynchronous];
  28. textFiled.text=@"";
  29. myTextField = textFiled;
  30. }
  31. #pragma mark - 返回机器人回答
  32. //调用API完毕, 返回图灵回答结果
  33. //1. 收起键盘
  34. //2. 显示回答内容
  35. - (void)requestFinished:(ASIHTTPRequest *)request
  36. {
  37. //收起键盘
  38. [myTextField resignFirstResponder];
  39. // 当以文本形式读取返回内容时用这个方法
  40. // 解析返回的json数据
  41. NSString *responseString = [request responseString];
  42. self.testDic = [responseString objectFromJSONString];
  43. self.testArr = [testDic objectForKey:@"text"];
  44. //显示回答内容
  45. ChartCellFrame *cellFrame=[[ChartCellFrame alloc]init];
  46. ChartMessage *chartMessage=[[ChartMessage alloc]init];
  47. chartMessage.icon=@"icon02.png";
  48. chartMessage.messageType=0;
  49. chartMessage.content=[NSString stringWithFormat:@"%@", self.testArr];
  50. cellFrame.chartMessage=chartMessage;
  51. [self.cellFrames addObject:cellFrame];
  52. [self.tableView reloadData];
  53. //滚动到当前行
  54. [self tableViewScrollCurrentIndexPath];
  55. }
  56. // API请求失败
  57. - (void)requestFailed:(ASIHTTPRequest *)request
  58. {
  59. NSError *error = [request error];
  60. NSLog(@"error --- %@",error);
  61. UIAlertView *alert_ = [[UIAlertView alloc]initWithTitle:@"提示" message:@"无网络可用,请检查网络状态" delegate:self cancelButtonTitle:@"知道了" otherButtonTitles: nil];
  62. [alert_ show];
  63. }

学习的路上, 与君共勉

Published by

风君子

独自遨游何稽首 揭天掀地慰生平