Skip to main content

Aleph Alpha

The Luminous series is a family of large language models.

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

# Install the package
%pip install --upgrade --quiet 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'

Help us out by providing feedback on this documentation page: