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
# Installing the langchain package needed to use the integration
%pip install -qU langchain-community
# 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()