利用streamlit结合langchain_aws实现claud3的页面交互

2024-06-08 10:04

本文主要是介绍利用streamlit结合langchain_aws实现claud3的页面交互,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

测试使用的代码如下

import streamlit as st
from langchain_aws import ChatBedrockdef chat_with_model(prompt, model_id):llm = ChatBedrock(credentials_profile_name="default", model_id=model_id, region_name="us-east-1")res = llm.invoke(prompt)return res.content# Streamlit app
st.title("LangChain AWS Chat Interface")# Sidebar for model selection
models = {"Claude-3 Sonnet": "anthropic.claude-3-sonnet-20240229-v1:0","titan": "amazon.titan-text-express-v1","Claude-3 haiku": "anthropic.claude-3-haiku-20240307-v1:0"
}model_choice = st.sidebar.selectbox("Select a Model", list(models.keys()))
model_id = models[model_choice]# Text area for user input
prompt = st.text_area("Enter your prompt here:", "")if st.button("Send"):if prompt:response = chat_with_model(prompt, model_id)st.write(f"模型返回的结果:\n{response}")else:st.write("Please enter a prompt.")

运行代码

streamlit run app.py

运行结果如下

为了实现更友好的界面,修改源码如下

import streamlit as st
from langchain_aws import ChatBedrock# 定义与模型交互的函数
def chat_with_model(prompt, model_id, history):llm = ChatBedrock(credentials_profile_name="default", model_id=model_id, region_name="us-east-1")full_prompt = "\n".join(history + [prompt])res = llm.invoke(full_prompt)return res.content# 初始化 Streamlit 应用
st.set_page_config(page_title="Bedrock Client", layout="wide")
st.title("Bedrock Client")# 定义 CSS 样式
st.markdown("""<style>.sidebar .sidebar-content {background-color: #f0f0f5;}.main .block-container {padding: 2rem;}.chat-history {max-height: 400px;overflow-y: auto;padding: 1rem;background-color: #ffffff;border: 1px solid #ddd;border-radius: 8px;margin-bottom: 1rem;}.chat-input {width: 100%;padding: 1rem;border: 1px solid #ddd;border-radius: 8px;}</style>""",unsafe_allow_html=True
)# 模型字典
models = {"Claude-3 Sonnet": "anthropic.claude-3-sonnet-20240229-v1:0","titan": "amazon.titan-text-express-v1","Claude-3 haiku": "anthropic.claude-3-haiku-20240307-v1:0"
}# 侧边栏选择模型
st.sidebar.header("选择模型")
model_choice = st.sidebar.selectbox("Select a Model", list(models.keys()))
model_id = models[model_choice]# 检查 session_state 中是否有对话历史记录
if "history" not in st.session_state:st.session_state.history = []# 主界面布局
st.sidebar.title("会话")
st.sidebar.button("新建对话", on_click=lambda: st.session_state.update({"history": []}))
st.sidebar.markdown(f"**当前会话** ({len(st.session_state.history) // 2} 条对话)")# 显示对话历史记录
st.markdown("### 对话记录")
chat_history_container = st.container()
with chat_history_container:if st.session_state.history:for message in st.session_state.history:st.markdown(f"<div class='chat-history'>{message}</div>", unsafe_allow_html=True)else:st.markdown("<div class='chat-history'>暂无对话记录</div>", unsafe_allow_html=True)# 输入区域和发送按钮
prompt = st.text_input("Enter your prompt here:", "", key="input", placeholder="输入消息,Shift + Enter 换行 / 触发补全,触发命令", label_visibility="collapsed")if st.button("发送"):if prompt:response = chat_with_model(prompt, model_id, st.session_state.history)st.session_state.history.append(f"User: {prompt}")st.session_state.history.append(f"Model: {response}")st.experimental_rerun()  # 刷新页面以显示新对话else:st.write("Please enter a prompt.")

运行之后界面如下所示

 

这篇关于利用streamlit结合langchain_aws实现claud3的页面交互的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1041875

相关文章

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

一文详解如何使用Java获取PDF页面信息

《一文详解如何使用Java获取PDF页面信息》了解PDF页面属性是我们在处理文档、内容提取、打印设置或页面重组等任务时不可或缺的一环,下面我们就来看看如何使用Java语言获取这些信息吧... 目录引言一、安装和引入PDF处理库引入依赖二、获取 PDF 页数三、获取页面尺寸(宽高)四、获取页面旋转角度五、判断

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

nginx -t、nginx -s stop 和 nginx -s reload 命令的详细解析(结合应用场景)

《nginx-t、nginx-sstop和nginx-sreload命令的详细解析(结合应用场景)》本文解析Nginx的-t、-sstop、-sreload命令,分别用于配置语法检... 以下是关于 nginx -t、nginx -s stop 和 nginx -s reload 命令的详细解析,结合实际应

SpringBoot结合Docker进行容器化处理指南

《SpringBoot结合Docker进行容器化处理指南》在当今快速发展的软件工程领域,SpringBoot和Docker已经成为现代Java开发者的必备工具,本文将深入讲解如何将一个SpringBo... 目录前言一、为什么选择 Spring Bootjavascript + docker1. 快速部署与

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

mybatis执行insert返回id实现详解

《mybatis执行insert返回id实现详解》MyBatis插入操作默认返回受影响行数,需通过useGeneratedKeys+keyProperty或selectKey获取主键ID,确保主键为自... 目录 两种方式获取自增 ID:1. ​​useGeneratedKeys+keyProperty(推