The Luminous series is a family of large language models. This example goes over how to use LangChain to interact with Aleph Alpha models
# 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'