Skip to main content

A LangChain wrapper for LLM7 API

Project description

PyPI version License: Apache 2.0 Downloads LinkedIn

LangChain LLM7 Integration

Official LangChain compatibility layer for LLM7 API services.

Installation

pip install langchain-llm7

Features

  • 🚀 Native integration with LangChain's BaseChatModel interface
  • ⚡ Support for both streaming and non-streaming responses
  • 🔧 Customizable model parameters (temperature, max_tokens, stop sequences)
  • 📊 Token usage metadata tracking
  • 🛠 Robust error handling and retry mechanisms

Usage

Basic Implementation

from langchain_llm7 import ChatLLM7
from langchain_core.messages import HumanMessage

# Initialize with default parameters
llm = ChatLLM7()

# Basic invocation
response = llm.invoke([HumanMessage(content="Hello!")])
print(response.content)

Streaming Responses

# Enable streaming
llm = ChatLLM7(streaming=True)

for chunk in llm.stream([HumanMessage(content="Tell me about quantum computing")]):
    print(chunk.content, end="", flush=True)

Advanced Configuration

# Custom model configuration
llm = ChatLLM7(
    model="llama-3.3-70b-instruct-fp8-fast",
    temperature=0.7,
    max_tokens=500,
    stop=["\n", "Observation:"],
    timeout=45
)

Parameters

Parameter Description Default
model Model version to use "gpt-4o-mini-2024-07-18"
base_url API endpoint URL "https://api.llm7.io/v1"
temperature Sampling temperature (0.0-2.0) 1.0
max_tokens Maximum number of tokens to generate None
timeout Request timeout in seconds 120
stop Stop sequences for response generation None
streaming Enable streaming response mode False

Error Handling

The library provides detailed error messages for:

  • API communication failures
  • Invalid message formats
  • Unsupported message types
  • Response parsing errors
try:
    llm.invoke([{"invalid": "message"}])
except ValueError as e:
    print(f"Error: {e}")

Testing

To run the test suite:

pip install pytest
pytest tests/

Documentation

For complete documentation see:

Contributing

Contributions are welcome! Please open an issue or submit a PR:

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Contact

Eugene Evstafev

LinkedIn Profile

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_llm7-2025.4.101205.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

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

langchain_llm7-2025.4.101205-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

Details for the file langchain_llm7-2025.4.101205.tar.gz.

File metadata

  • Download URL: langchain_llm7-2025.4.101205.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.11

File hashes

Hashes for langchain_llm7-2025.4.101205.tar.gz
Algorithm Hash digest
SHA256 52260919b8a1939ccdeef496a3d43e6e173065e1d9a92b813ade0ceee85a7ef0
MD5 fbfab8c9bdeb644360b390ca447c3afc
BLAKE2b-256 5d866139c8e6b5c38cbf51ab4f4f54cff623f377a0ec4bd64cebdb1f11d6dd39

See more details on using hashes here.

File details

Details for the file langchain_llm7-2025.4.101205-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_llm7-2025.4.101205-py3-none-any.whl
Algorithm Hash digest
SHA256 9ff6b57c80ae13b504f60cdfcc10d1c184f19b60ca1965c94da1687fd24aabbc
MD5 215c008e9ec0f2e5780a9c885d7c3fb3
BLAKE2b-256 5bc275919d4a64e8970090cbd61a9899c4265c1f2e1c1cfc58cfb665b95b7de5

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