[AI Embedchain] 开始使用 - 快速开始

简介: [AI Embedchain] 开始使用 - 介绍

安装

首先安装 Python 包:

pip install embedchain

安装包后,根据您的偏好,您可以选择使用以下内容:

开源模型

本节提供了一个快速入门示例,展示了如何使用 Mistral 作为开源 LLM(大型语言模型)和 Sentence transformers 作为开源嵌入模型。这些模型是免费的,并且主要在您的本地机器上运行。

我们使用的是在 Hugging Face 上托管的 Mistral,因此您需要一个 Hugging Face 令牌来运行此示例。它是 免费 的,您可以在此处创建一个 here

import os
# 将此行替换为您的 HF 令牌
os.environ["HUGGINGFACE_ACCESS_TOKEN"] = "hf_xxxx"

from embedchain import App

config = {
   
  'llm': {
   
    'provider': 'huggingface',
    'config': {
   
      'model': 'mistralai/Mistral-7B-Instruct-v0.2',
      'top_p': 0.5
    }
  },
  'embedder': {
   
    'provider': 'huggingface',
    'config': {
   
      'model': 'sentence-transformers/all-mpnet-base-v2'
    }
  }
}
app = App.from_config(config=config)
app.add("https://www.forbes.com/profile/elon-musk")
app.add("https://en.wikipedia.org/wiki/Elon_Musk")
app.query("What is the net worth of Elon Musk today?")
# 回答:Elon Musk 今天的净资产是 2587 亿美元。

付费模型

在本节中,我们将使用来自 OpenAI 的 LLM 和嵌入模型。

import os
from embedchain import App

# 将此行替换为您的 OpenAI 密钥
os.environ["OPENAI_API_KEY"] = "sk-xxxx"

app = App()
app.add("https://www.forbes.com/profile/elon-musk")
app.add("https://en.wikipedia.org/wiki/Elon_Musk")
app.query("What is the net worth of Elon Musk today?")
# 回答:Elon Musk 今天的净资产是 2587 亿美元。

引用

相关文章
|
4月前
|
人工智能
[AI Mem0] 快速开始:智能记忆管理,让你的数据活起来!
[AI Mem0] 快速开始:智能记忆管理,让你的数据活起来!
|
4月前
|
人工智能 自然语言处理 搜索推荐
[AI Mem0 Platform] 快速开始,为您的AI应用注入长期记忆和个性化能力!
[AI Mem0 Platform] 快速开始,为您的AI应用注入长期记忆和个性化能力!
|
3月前
|
人工智能 前端开发 API
[AI Embedchain] 开始使用 - 全栈
[AI Embedchain] 开始使用 - 全栈
[AI Embedchain] 开始使用 - 全栈
|
3月前
|
人工智能 机器人
[AI Embedchain] 集成 Streamlit
[AI Embedchain] 集成 Streamlit
[AI Embedchain] 集成 Streamlit
|
3月前
|
人工智能
[AI Embedchain] 集成 Chainlit
[AI Embedchain] 集成 Chainlit
[AI Embedchain] 集成 Chainlit
|
3月前
|
人工智能 监控 Python
[AI Embedchain] 集成 Langsmith
[AI Embedchain] 集成 Langsmith
[AI Embedchain] 集成 Langsmith
|
3月前
|
人工智能 监控 数据可视化
[AI Embedchain] 集成 OpenLIT
[AI Embedchain] 集成 OpenLIT
|
3月前
|
人工智能 监控 测试技术
[AI Embedchain] 集成 Helicone
[AI Embedchain] 集成 Helicone
|
3月前
|
存储 人工智能 搜索推荐
[AI Embedchain] 开始使用 - 介绍
[AI Embedchain] 开始使用 - 介绍
|
3天前
|
存储 XML 人工智能
深度解读AI在数字档案馆中的创新应用:高效识别与智能档案管理
基于OCR技术的纸质档案电子化方案,通过先进的AI能力平台,实现手写、打印、复古文档等多格式高效识别与智能归档。该方案大幅提升了档案管理效率,确保数据安全与隐私,为档案馆提供全面、智能化的电子化管理解决方案。
70 48

热门文章

最新文章

下一篇
无影云桌面