An integration package connecting Digitalocean and LangChain
Project description
langchain-gradient
This package contains the LangChain integration with DigitalOcean
Installation
pip install -U langchain-gradient
And you should configure credentials by setting the DIGITALOCEAN_INFERENCE_KEY environment variable:
- Log in to the DigitalOcean Cloud console
- Go to the Gradient Platform and navigate to Serverless Inference.
- Click on Create model access key, enter a name, and create the key.
- Use the generated key as your
DIGITALOCEAN_INFERENCE_KEY:
Create .env file with your access key:
DIGITALOCEAN_INFERENCE_KEY=your_access_key_here
Chat Models
ChatGradient class exposes chat models from langchain-gradient.
Invoke
import os
from dotenv import load_dotenv
from langchain_gradient import ChatGradient
load_dotenv()
llm = ChatGradient(
model="llama3.3-70b-instruct",
api_key=os.getenv("DIGITALOCEAN_INFERENCE_KEY")
)
result = llm.invoke("What is the capital of France?.")
print(result)
Stream
import os
from dotenv import load_dotenv
from langchain_gradient import ChatGradient
load_dotenv()
llm = ChatGradient(
model="llama3.3-70b-instruct",
api_key=os.getenv("DIGITALOCEAN_INFERENCE_KEY")
)
for chunk in llm.stream("Tell me what happened to the Dinosaurs?"):
print(chunk.content, end="", flush=True)
More features coming soon.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_gradient-0.1.22.tar.gz.
File metadata
- Download URL: langchain_gradient-0.1.22.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2672aa1a6bc9d1d3edb634b42a09ff94f73c6a5e1cc0ade939eaf1fc42df802a
|
|
| MD5 |
2ad27a107dfc66975b08f0ca25e145c4
|
|
| BLAKE2b-256 |
9d7b2f9dc73f82cd10f83bfec4b02059f3ecc1d4b3f68778b0f327baab91d435
|
File details
Details for the file langchain_gradient-0.1.22-py3-none-any.whl.
File metadata
- Download URL: langchain_gradient-0.1.22-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.5 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28f64e569b3e7548bbac01c43be090432eac201b773265b99892cb9c34280eb
|
|
| MD5 |
5dc1f21256ca20df35626aaad0bc8c3f
|
|
| BLAKE2b-256 |
823185527494308cac502fb88b68fdd40596771b8ef31af84b73c187614fc9ca
|