Skip to main content

模态框

本页面介绍了如何在 LangChain 中使用模态框生态系统。 它分为两个部分:安装和设置,然后引用特定的模态框包装器。

安装和设置

  • 使用 pip install modal-client 进行安装
  • 运行 modal token new

定义你的模态框函数和 Webhooks

您必须包含提示。有一个严格的响应结构。

class Item(BaseModel):
prompt: str

@stub.webhook(method="POST")
def my_webhook(item: Item):
return {"prompt": my_function.call(item.prompt)}

使用 GPT2 的一个示例:

from pydantic import BaseModel

import modal

stub = modal.Stub("example-get-started")

volume = modal.SharedVolume().persist("gpt2_model_vol")
CACHE_PATH = "/root/model_cache"

@stub.function(
gpu="any",
image=modal.Image.debian_slim().pip_install(
"tokenizers", "transformers", "torch", "accelerate"
),
shared_volumes={CACHE_PATH: volume},
retries=3,
)
def run_gpt2(text: str):
from transformers import GPT2Tokenizer, GPT2LMHeadModel
tokenizer = GPT2Tokenizer.from_pretrained('gpt2')
model = GPT2LMHeadModel.from_pretrained('gpt2')
encoded_input = tokenizer(text, return_tensors='pt').input_ids
output = model.generate(encoded_input, max_length=50, do_sample=True)
return tokenizer.decode(output[0], skip_special_tokens=True)

class Item(BaseModel):
prompt: str

@stub.webhook(method="POST")
def get_text(item: Item):
return {"prompt": run_gpt2.call(item.prompt)}

包装器

LLM

存在一个模态框 LLM 包装器,您可以通过以下方式访问

from langchain.llms import Modal