Skip to main content

A client library for the OpenWebUI API, compatible with OpenAI Python SDK

Project description

OpenWebUI Client

PyPI version Python versions Documentation License: MIT

A client library for the OpenWebUI API, compatible with the OpenAI Python SDK but with extensions specific to OpenWebUI features.

Installation

pip install openwebui-client

Quick Start

from openwebui_client import OpenWebUIClient

# Initialize client
client = OpenWebUIClient(
    api_key="your_api_key",  # Optional if set in environment variable
    base_url="http://your-openwebui-instance:5000",
    default_model="gpt-4"
)

# Basic chat completion
response = client.chat.completions.create(
    model="gpt-4",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello, world!"}
    ]
)
print(response.choices[0].message.content)

# Upload a file to OpenWebUI
with open("document.pdf", "rb") as file:
    uploaded_file = client.files.upload(file=file, purpose="assistant")

# Use file with chat completion
response = client.chat.completions.create(
    model="gpt-4",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Summarize this document for me."}
    ],
    file_ids=[uploaded_file.id]
)

Features

  • OpenAI Compatibility: Use the familiar OpenAI Python SDK interfaces
  • File Upload: Upload and process files with OpenWebUI
  • File-Aware Chat Completions: Reference files in chat completions
  • Typed Interface: Full type hints for better IDE integration

Documentation

Full documentation is available at https://bemade.github.io/openwebui-client/

Development

# Install development dependencies
pip install -e ".[dev]"

# Run tests
python -m pytest

# Build documentation
cd docs
make html

License

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

Related Projects

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

openwebui_client-0.2.0.tar.gz (586.8 kB view details)

Uploaded Source

Built Distribution

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

openwebui_client-0.2.0-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file openwebui_client-0.2.0.tar.gz.

File metadata

  • Download URL: openwebui_client-0.2.0.tar.gz
  • Upload date:
  • Size: 586.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for openwebui_client-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a2aab6107801e27d084cf33ba287fd015bce781fac8b2cdee98e9ec2d2f6eddd
MD5 d043e1b51a8727b6eb17b39ca702dcb2
BLAKE2b-256 6a59dd18e828a4e18d82d950f884363cf49397367a471986947ab823493692e2

See more details on using hashes here.

File details

Details for the file openwebui_client-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openwebui_client-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a3ddf46ec0b3c9ecb654c598f92e758fbf8890233f388d92c9d94b067f7f291
MD5 23a0557e5451dcd6b9670e9c5bf08418
BLAKE2b-256 2b31329b4b1ff813ef13e5c296159164e47271043c23d0f8d474f4f99a64f71f

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