河曲智叟 发表于 2024-12-15 12:05:01

LangChain-08 Query SQL DB 通过GPT自动查询SQL

我们需要下载一个 LangChain 官方提供的本地小数据库。
安装依赖

SQL:
https://raw.githubusercontent.com/lerocha/chinook-database/master/ChinookDatabase/DataSources/Chinook_Sqlite.sql
Shell:
pip install --upgrade --quietlangchain-core langchain-community langchain-openai
导入数据

我这里使用 Navicat 导入数据,你也可以通过别的方式导入(固然你有现成的数据库也可以,但是不要太大了,不然会消耗很多Token)。
https://i-blog.csdnimg.cn/blog_migrate/cc3664a66c8d997d60c36ef9449d4a60.png
编写代码

这里我使用了 GPR 3.5 Turbo,效果不抱负的话可以试试GPT 4 大概 GPT 4 Turbo
from langchain_core.prompts import ChatPromptTemplate
from langchain_community.utilities import SQLDatabase
from langchain_core.output_parsers import StrOutputParser
from langchain_core.runnables import RunnablePassthrough
from langchain_openai import ChatOpenAI


template = """Based on the table schema below, write a SQL query that would answer the user's question:
{schema}

Question: {question}
SQL Query:"""
prompt = ChatPromptTemplate.from_template(template)

db = SQLDatabase.from_uri("sqlite:///./Chinook.db")


def get_schema(_):
    return db.get_table_info()


def run_query(query):
    return db.run(query)


model = ChatOpenAI(
    model="gpt-3.5-turbo",
)

sql_response = (
    RunnablePassthrough.assign(schema=get_schema)
    | prompt
    | model.bind(stop=["\nSQLResult:"])
    | StrOutputParser()
)

message = sql_response.invoke({"question": "How many employees are there?"})
print(f"message: {message}")
运行结果

➜ python3 test08.py
message: SELECT COUNT(*) AS totalEmployees
FROM Employee;
https://i-blog.csdnimg.cn/blog_migrate/3057b1f8c8069a68930e668e13a8f59e.png

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: LangChain-08 Query SQL DB 通过GPT自动查询SQL