LangChain V1.0 릴리즈 이후 공식 도큐먼트의 한글 번역본 입니다. 번역 오류는 Issue 에 올려주세요 🙇♂️
한국어
Python
# Installing the langchain package needed to use the integration pip install -qU langchain-community
# Install the package pip install -qU aleph-alpha-client
# create a new token: https://docs.aleph-alpha.com/docs/account/#create-a-new-token from getpass import getpass ALEPH_ALPHA_API_KEY = getpass()
········
from langchain_community.llms import AlephAlpha from langchain_core.prompts import PromptTemplate
template = """Q: {question} A:""" prompt = PromptTemplate.from_template(template)
llm = AlephAlpha( model="luminous-extended", maximum_tokens=20, stop_sequences=["Q:"], aleph_alpha_api_key=ALEPH_ALPHA_API_KEY, )
llm_chain = prompt | llm
question = "What is AI?" llm_chain.invoke({"question": question})
' Artificial Intelligence is the simulation of human intelligence processes by machines.\n\n'