首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Github项目推荐 | Articulate:对话界面智能代理(chatbots)平台

Github项目推荐 | Articulate:对话界面智能代理(chatbots)平台

作者头像
AI研习社
发布2019-05-08 16:45:36
发布2019-05-08 16:45:36
2.2K00
代码可运行
举报
文章被收录于专栏:AI研习社AI研习社
运行总次数:0
代码可运行

Articulate是用于与智能代理(chatbots)建立对话界面的平台。

Github项目地址:

https://github.com/samtecspg/articulate

文档

https://samtecspg.github.io/articulate/

快速开始

一、首先,确保已经安装了以下程序:

  • Docker(此处为Community Edition('Docker CE'))
  • docker-compose(一般情况下会作为Docker的一部分在mac和windows上自动安装)
  • Git(默认安装在mac和大多数linux系统上。 要在Windows上安装,请在此处获取)。 注:如果使用的是Windows 或 Mac Docker 端,请确保为Docker分配至少4GB的RAM。

二、下载当前(最新)版本(文件名:articulate-vX.X.X.zip):

https://github.com/samtecspg/articulate/releases/latest

三、解压并在解压目录中获取终端或CMD

四、本地运行:

1.运行 docker-compose up (可能需要使用 sudo )

注:如果要在Windows上的Docker运行,则系统版本只能是Windows 10

2.将你的Web浏览器指向 http://localhost:3000 并开始享受 Articulate ,API文档可访问 http://localhost:7500/documentation

五、远程运行(适用于在Docker Machine或云端运行):

以这种方式运行时唯一的额外要求是环境变量,它需要通知UI在哪里查找API(公共URL)。

代码语言:javascript
代码运行次数:0
运行
复制
API_URL=http://xxx.xx.xx.xx:7500 docker-compose up

注:

  • 用你的公共IP或网址替换 x 的内容
  • 可能需要使用 sudo
  • 在Windows上指定的环境变量需要更多一些。 最简单的方法是修改docker-compose.yml文件。 用以下格式替换ui服务:
代码语言:javascript
代码运行次数:0
运行
复制
ui: 
image: samtecspg/articulate-ui:repo-head 
ports: ['0.0.0.0:3000:3000'] 
networks: ['alpha-nlu-network'] 
environment:API_URL=http://xxx.xx.xx.xx:7500

License

代码语言:javascript
代码运行次数:0
运行
复制

Copyright 2018 Samtec.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2019-04-10,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 AI研习社 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文档
  • 快速开始
  • License
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档