Prem generic utils to use across Prem Components.
Project description
🛠️ Prem Utils
Utilities, and Connectors in order to interact with all Model Serving and Fine-tuning Providers.
🗄️ Connectors
Name | Status |
---|---|
Anthropic | Active |
OpenAI | Active |
Perplexity | Active |
Cohere | Active |
DeepInfra | Deprecated |
FireworksAI | Deprecated |
OctoAI | Deprecated |
Groq | Active |
Lamini | Deprecated |
Mistral | Active |
OpenRouter | Active |
Prem | Active |
Replicate | Deprecated |
Together | Deprecated |
🤙 Usage
pip install prem-utils
import asyncio
from inspect import iscoroutine
from prem_utils.connectors import openai
connector = openai.OpenAIConnector(api_key="")
prompt = "Hello, how are you?"
response = connector.chat_completion(model="gpt-3.5-turbo", messages=[{"role": "user", "content": prompt}])
if iscoroutine(response):
response = asyncio.run(response)
message = response["choices"][0]["message"]["content"]
print(message)
📦 Contribute
Install the necessary dependencies
virtualenv venv -p=3.11
source venv/bin/activate
pip install -r requirements.txt
Test all or one connector
# will run all the connectors
python e2e.py
# only one connector
python e2e.py --name perplexity
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
prem_utils-0.0.42.tar.gz
(29.5 kB
view details)
Built Distribution
File details
Details for the file prem_utils-0.0.42.tar.gz
.
File metadata
- Download URL: prem_utils-0.0.42.tar.gz
- Upload date:
- Size: 29.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32d53e916a6ea07a92d8ccadc0c68270ce9ff913eb311a02ad7e00e1b98e7432 |
|
MD5 | 42f364c607f4e5babce5fe9f57707832 |
|
BLAKE2b-256 | c23f82d88f8ea6e4ec60cd6bdb9a59bdba4fbe46314f405be15e9bc390d79162 |
File details
Details for the file prem_utils-0.0.42-py3-none-any.whl
.
File metadata
- Download URL: prem_utils-0.0.42-py3-none-any.whl
- Upload date:
- Size: 41.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d44381f8e2f11e08644ef9758c2315b6dfd67703db1bc9b100bf19e48b77e16a |
|
MD5 | 7f3ed043abf464491c91d587dcc53992 |
|
BLAKE2b-256 | 849b99efed6647c832c5ae4a7c8d5983c3c954a66f2ef802038ff8de1771be10 |