Aleph Alpha#

This example goes over how to use LangChain to interact with Aleph Alpha models

from langchain.llms import AlephAlpha
from langchain import PromptTemplate, LLMChain
template = """Q: {question}

A:"""

prompt = PromptTemplate(template=template, input_variables=["question"])
llm = AlephAlpha(model="luminous-extended", maximum_tokens=20, stop_sequences=["Q:"])
llm_chain = LLMChain(prompt=prompt, llm=llm)
question = "What is AI?"

llm_chain.run(question)
' Artificial Intelligence (AI) is the simulation of human intelligence processes by machines, especially computer systems.\n'