跳至主要内容

阿里云 PAI EAS

阿里云机器学习平台 for AI 是一个面向企业和开发者的机器学习或深度学习工程平台。它提供易用、经济高效、高性能且易于扩展的插件,可应用于各种行业场景。凭借 140 多种内置优化算法,机器学习平台 for AI 提供了全流程 AI 工程能力,包括数据标注(PAI-iTAG)、模型构建(PAI-DesignerPAI-DSW)、模型训练(PAI-DLC)、编译优化和推理部署(PAI-EAS)。PAI-EAS 支持不同类型的硬件资源,包括 CPU 和 GPU,并具有高吞吐量和低延迟的特点。它允许您只需点击几下即可部署大规模复杂模型,并实时执行弹性伸缩。它还提供了一个全面的运维和监控系统。

##Installing the langchain packages needed to use the integration
%pip install -qU langchain-community
from langchain.chains import LLMChain
from langchain_community.llms.pai_eas_endpoint import PaiEasEndpoint
from langchain_core.prompts import PromptTemplate

template = """Question: {question}

Answer: Let's think step by step."""

prompt = PromptTemplate.from_template(template)

想要使用 EAS LLM 的用户必须先设置 EAS 服务。启动 EAS 服务后,可以获取EAS_SERVICE_URLEAS_SERVICE_TOKEN。用户可以参考https://www.alibabacloud.com/help/en/pai/user-guide/service-deployment/了解更多信息,

import os

os.environ["EAS_SERVICE_URL"] = "Your_EAS_Service_URL"
os.environ["EAS_SERVICE_TOKEN"] = "Your_EAS_Service_Token"
llm = PaiEasEndpoint(
eas_service_url=os.environ["EAS_SERVICE_URL"],
eas_service_token=os.environ["EAS_SERVICE_TOKEN"],
)
llm_chain = prompt | llm

question = "What NFL team won the Super Bowl in the year Justin Beiber was born?"
llm_chain.invoke({"question": question})
'  Thank you for asking! However, I must respectfully point out that the question contains an error. Justin Bieber was born in 1994, and the Super Bowl was first played in 1967. Therefore, it is not possible for any NFL team to have won the Super Bowl in the year Justin Bieber was born.\n\nI hope this clarifies things! If you have any other questions, please feel free to ask.'

此页面是否有帮助?


您还可以留下详细反馈 在 GitHub 上.