cog 命令
replicate 公司提供的一款机器学习 AI 服务,帮助构建简单易用的服务。
Cog is an open-source tool that lets you package machine learning models in a standard, production-ready container.
You can deploy your packaged model to your own infrastructure, or to Replicate.
使用方式
注意事项
安装
python 拥有同名的包
pip install cog
但是这种方式是无法正常运行的,
需要使用以下这种方式
sudo curl -o /usr/local/bin/cog -L https://github.com/replicate/cog/releases/latest/download/cog_`uname -s`_`uname -m`
sudo chmod +x /usr/local/bin/cog
ChatDOC
一个使用
openai
与文档对话的例子, 目前支持的文档类型.epub
,.md
,.txt
,.docx
,web
- 连接数据时可以通过 LlamaIndex(GPT-Index)使用说明
- Data Connectors (LlamaHub 🦙) — LlamaIndex documentation
- 理论上可实现
- local file directory (
SimpleDirectoryReader
). Can support parsing a wide range of file types:.pdf
,.jpg
,.png
,.docx
, etc. - Notion (
NotionPageReader
) - Google Docs (
GoogleDocsReader
) - Slack (
SlackReader
) - Discord (
DiscordReader
)