ClosedAI is a drop-in replacement for OpenAI.
Project description
Closed AI
⚠️ This project is in early development is a work in progress. ⚠️
closedai
is a drop-in replacement for openai
, but only with open models.
Installation
For now, install locally, as this project is a WIP and PyPi may be out of date.
git clone https://github.com/nateraw/closedai.git
cd closedai
pip install -e .
Usage
The idea is that you will run your own OpenAI-like server with whatever model you want. Once the server is running, you can hit it with openai
python library (or any other SDK of your choosing) by overriding the api base endpoint with the URL to your running server.
Server
In your terminal, run:
closedai
You can see the available configuration flags with closedai --help
.
Docker
docker build -t closedai .
docker run -p 7860:7860
Client
If using localhost, you can from closedai import openai
. If running remotely, for now you can just import openai
and override openai.api_base
with your endpoint and openai.api_key with a dummy value.
Then, use it as you normally would...
Completions
from closedai import openai
completion = openai.Completion.create(model='asdf', prompt='hi there, my name is', stream=False)
print(completion)
Completions streaming
from closedai import openai
completion = openai.Completion.create(model='asdf', prompt='hi there, my name is', stream=True)
for new_text in completion:
print(new_text)
Chat Completions
from closedai import openai
completion = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Who won the world series in 2020?"},
{"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
{"role": "user", "content": "Where was it played?"},
],
stream=False,
)
print(completion)
Chat Completions streaming
from closedai import openai
completion = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Who won the world series in 2020?"},
{"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
{"role": "user", "content": "Where was it played?"},
],
stream=True,
)
for x in completion:
print(x)
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file closedai-0.0.3.tar.gz
.
File metadata
- Download URL: closedai-0.0.3.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73da3da114d8e7be92897c800b6e187d57e56e034356e0e3af84dfea5d654c23 |
|
MD5 | 432246130816f3a2a10d0f5dbc75856e |
|
BLAKE2b-256 | 76e903fb07d23fdf544739df98c3717fcabe4a0bf38efaec6cbea8524c7d6bae |
File details
Details for the file closedai-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: closedai-0.0.3-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25cbc9c66a9853406af6746992f100e86e9e39c1822591e54af1f4e407eb173a |
|
MD5 | bf16b0c497c84333783c3387263b4db4 |
|
BLAKE2b-256 | 150bb4a93d3c7f923085b2ec321ab8d436326d813819c9f71ea7e3e1cc80df46 |