Gradient
Gradient allows to fine tune and get completions on LLMs with a simple web API.
Installation and Setupโ
- Install the Python SDK :
pip install gradientai
Get a Gradient access token and workspace and set it as an environment variable (Gradient_ACCESS_TOKEN
) and (GRADIENT_WORKSPACE_ID
)
LLMโ
There exists an Gradient LLM wrapper, which you can access with See a usage example.
from langchain_community.llms import GradientLLM
API Reference:GradientLLM
Text Embedding Modelโ
There exists an Gradient Embedding model, which you can access with
from langchain_community.embeddings import GradientEmbeddings
API Reference:GradientEmbeddings
For a more detailed walkthrough of this, see this notebook