[AI Embedchain] 集成 Streamlit

2024-08-13 07:36:57 浏览数 (1)

在这个例子中,我们将学习如何使用mistralai/Mixtral-8x7B-Instruct-v0.1和Embedchain与Streamlit一起构建一个简单的RAG聊天机器人。

Streamlit   Embedchain DemoStreamlit Embedchain Demo

设置

安装Embedchain和Streamlit。

代码语言:bash复制
pip install embedchain streamlit

app.py

代码语言:python代码运行次数:0复制
import os
from embedchain import App
import streamlit as st

with st.sidebar:
    huggingface_access_token = st.text_input("Hugging face Token", key="chatbot_api_key", type="password")
    "[获取Hugging Face访问令牌](https://huggingface.co/settings/tokens)"
    "[查看源代码](https://github.com/embedchain/examples/mistral-streamlit)"

st.title("


	

0 人点赞