Skip to main content

An integration package connecting Baseten and LangChain

Project description

langchain-baseten

This package contains the LangChain integration with Baseten.

Installation

pip install langchain-baseten

The embeddings functionality uses Baseten's Performance Client for optimized performance:

pip install baseten-performance-client

Chat Models

ChatBaseten class exposes chat models from Baseten.

from langchain_baseten import ChatBaseten

# Option 1: Use Model APIs with model slug (recommended)
chat = ChatBaseten(
    model="deepseek-ai/DeepSeek-V3-0324",  # Choose from available model slugs
    api_key="your-api-key",  # Or set BASETEN_API_KEY env var
)

# Option 2: Use dedicated model URL for deployed models
chat = ChatBaseten(
    model_url="https://model-<id>.api.baseten.co/environments/production/predict",
    api_key="your-api-key",

 
)

# Use the chat model
response = chat.invoke("Hello, how are you?")
print(response.content)

Embeddings

BasetenEmbeddings class exposes embedding models from Baseten.

from langchain_baseten import BasetenEmbeddings

# Initialize the embeddings model
embeddings = BasetenEmbeddings(
    model_url="https://model-<id>.api.baseten.co/environments/production/sync",  # Your model URL
    api_key="your-api-key",  # Or set BASETEN_API_KEY env var
    # model parameter is optional since model_url identifies the model
)

# Embed documents
vectors = embeddings.embed_documents(["Hello world", "How are you?"])
print(f"Generated {len(vectors)} embeddings of dimension {len(vectors[0])}")

# Embed a single query
query_vector = embeddings.embed_query("What is the meaning of life?")
print(f"Query embedding dimension: {len(query_vector)}")

Configuration

You can configure the Baseten integration using environment variables:

  • BASETEN_API_KEY: Your Baseten API key

Deployment Options

Chat Models:

  • Model APIs (recommended): Use model slugs with shared infrastructure
  • Dedicated URLs: Use specific model deployments with dedicated resources

Embeddings:

  • Dedicated URLs only: Requires specific model deployment URL for Performance Client optimization

Supported Models

Baseten supports various models through their OpenAI-compatible API. You can use any model slug available in your Baseten account, or deploy custom models with dedicated URLs.

For more information about available models, visit the Baseten documentation.

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

langchain_baseten-0.1.3.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_baseten-0.1.3-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file langchain_baseten-0.1.3.tar.gz.

File metadata

  • Download URL: langchain_baseten-0.1.3.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for langchain_baseten-0.1.3.tar.gz
Algorithm Hash digest
SHA256 052d13264ebe4d25a1ae31b3c9fbb2b9e7c8bba0e8dff5be6889e34959b62906
MD5 36eb16f74dac03af44d6376f0b8baf5b
BLAKE2b-256 7b9e8c3d39125a32e38fa7c58c48450818ca361f36dfd48a73ccb10d5ef65e23

See more details on using hashes here.

File details

Details for the file langchain_baseten-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_baseten-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c3d78482cb3d6b9b4937f63b3c4cf5ab69145b640699154d48fbb822400f42b8
MD5 36dc342633e2c61659744d4f310bf51e
BLAKE2b-256 ff894f6a89334f59641487162661be4217fe833b0c0d6c0bd490353c993178fd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page