Skip to main content
Databricks Lakehouse 平台将数据、分析和 AI 统一在同一平台上。
本指南提供了 Databricks LLM 模型 的快速入门概述。有关所有功能和配置的详细文档,请参阅 API 参考

概述

Databricks LLM 类封装了以下两种端点类型之一托管的补全端点:
  • Databricks 模型服务,推荐用于生产和开发,
  • 集群驱动程序代理应用,推荐用于交互式开发。
本示例 notebook 展示了如何封装您的 LLM 端点,并在 LangChain 应用中将其用作 LLM。

限制

Databricks LLM 类是遗留实现,在功能兼容性方面存在若干限制。
  • 仅支持同步调用,不支持流式或异步 API。
  • 不支持 batch API。
如需使用上述功能,请改用新的 ChatDatabricks 类。ChatDatabricks 支持 ChatModel 的所有 API,包括流式、异步、批量等。

设置

要访问 Databricks 模型,您需要创建 Databricks 账户、配置凭证(仅在 Databricks 工作区外部时需要),并安装所需的包。

凭证(仅在 Databricks 外部时需要)

如果您在 Databricks 内部运行 LangChain 应用,可以跳过此步骤。 否则,您需要手动将 Databricks 工作区主机名和个人访问令牌分别设置为 DATABRICKS_HOSTDATABRICKS_TOKEN 环境变量。请参阅身份验证文档了解如何获取访问令牌。
import getpass
import os

os.environ["DATABRICKS_HOST"] = "https://your-workspace.cloud.databricks.com"
if "DATABRICKS_TOKEN" not in os.environ:
    os.environ["DATABRICKS_TOKEN"] = getpass.getpass(
        "Enter your Databricks access token: "
    )
或者,您也可以在初始化 Databricks 类时传入这些参数。
from langchain_community.llms import Databricks

databricks = Databricks(
    host="https://your-workspace.cloud.databricks.com",
    # We strongly recommend NOT to hardcode your access token in your code, instead use secret management tools
    # or environment variables to store your access token securely. The following example uses Databricks Secrets
    # to retrieve the access token that is available within the Databricks notebook.
    token=dbutils.secrets.get(scope="YOUR_SECRET_SCOPE", key="databricks-token"),
)

安装

LangChain Databricks 集成位于 langchain-community 包中。此外,运行本 notebook 中的代码还需要 mlflow >= 2.9
pip install -qU langchain-community mlflow>=2.9.0

封装模型服务端点

前提条件

预期的 MLflow 模型签名为:
  • 输入:[{"name": "prompt", "type": "string"}, {"name": "stop", "type": "list[string]"}]
  • 输出:[{"type": "string"}]

调用

from langchain_community.llms import Databricks

llm = Databricks(endpoint_name="YOUR_ENDPOINT_NAME")
llm.invoke("How are you?")
'I am happy to hear that you are in good health and as always, you are appreciated.'
llm.invoke("How are you?", stop=["."])
'Good'

转换输入和输出

有时您可能希望封装一个模型签名不兼容的服务端点,或者想要插入额外的配置。您可以使用 transform_input_fntransform_output_fn 参数来定义额外的前/后处理逻辑。
# Use `transform_input_fn` and `transform_output_fn` if the serving endpoint
# expects a different input schema and does not return a JSON string,
# respectively, or you want to apply a prompt template on top.


def transform_input(**request):
    full_prompt = f"""{request["prompt"]}
    Be Concise.
    """
    request["prompt"] = full_prompt
    return request


def transform_output(response):
    return response.upper()


llm = Databricks(
    endpoint_name="YOUR_ENDPOINT_NAME",
    transform_input_fn=transform_input,
    transform_output_fn=transform_output,
)

llm.invoke("How are you?")
'I AM DOING GREAT THANK YOU.'