A Python client for Orign
Project description
orign-py
A Python client for Orign
Installation
pip install orign
Install the Orign CLI
curl -fsSL -H "Cache-Control: no-cache" https://storage.googleapis.com/orign/releases/install.sh | bash
Login to Orign
$ orign login
Usage
Get a list of available models
$ orign get models
Chat
Define which model we would like to use
from orign import ChatModel
model = ChatModel(model="allenai/Molmo-7B-D-0924", provider="vllm")
Open a socket connection to the model
model.connect()
Chat with the model
model.chat(msg="What's in this image?", image="https://tinyurl.com/2fz6ms35")
Stream tokens from the model
for response in model.chat(msg="What is the capital of France?", stream_tokens=True):
print(response)
Send a thread of messages to the model
model.chat(prompt=[
{"role": "user", "content": "What is the capital of France?"},
{"role": "assistant", "content": "Paris"},
{"role": "user", "content": "When was it built?"}
])
Send a batch of threads to the model
model.chat(batch=[
[{"role": "user", "content": "What is the capital of France?"}, {"role": "assistant", "content": "Paris"}, {"role": "user", "content": "When was it built?"}],
[{"role": "user", "content": "What is the capital of Spain?"}, {"role": "assistant", "content": "Madrid"}, {"role": "user", "content": "When was it built?"}]
]):
Use the async API
from orign import AsyncChatModel
model = AsyncChatModel(model="allenai/Molmo-7B-D-0924", provider="vllm")
await model.connect()
async for response in model.chat(
msg="What is the capital of france?", stream_tokens=True
):
print(response)
Embeddings
Define which model we would like to use
from orign import EmbeddingModel
model = EmbeddingModel(provider="sentence-tf", model="clip-ViT-B-32")
Embed a text
model.embed(text="What is the capital of France?")
Embed an image
model.embed(image="https://example.com/image.jpg")
Embed text and image
model.embed(text="What is the capital of France?", image="https://example.com/image.jpg")
Use the async API
from orign import AsyncEmbeddingModel
model = AsyncEmbeddingModel(provider="sentence-tf", model="clip-ViT-B-32")
await model.connect()
await model.embed(text="What is the capital of France?")
OCR
Define which model we would like to use
from orign import OCRModel
model = OCRModel(provider="easyocr")
Detect text in an image
model.detect(image="https://example.com/image.jpg")
Use the async API
from orign import AsyncOCRModel
model = AsyncOCRModel(provider="doctr")
await model.connect()
await model.detect(image="https://example.com/image.jpg")
Examples
See the examples directory for more usage examples.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file orign-0.1.11.tar.gz.
File metadata
- Download URL: orign-0.1.11.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.7 Darwin/23.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c15bd16bd99ab33943143575b5ff39e56bfb53c6193d52fbacc77443067f4d51
|
|
| MD5 |
66a911f28de885ff5e8ea7854f1ed06a
|
|
| BLAKE2b-256 |
b3c30c0d7e8ae3b113f87773c78bfa8debc4525c51338e18094f4a9afcc94397
|
File details
Details for the file orign-0.1.11-py3-none-any.whl.
File metadata
- Download URL: orign-0.1.11-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.7 Darwin/23.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c77fc92000cd936c6aa26fb88087a2259d7ef46e0b420bf87cbb949e3a63c752
|
|
| MD5 |
005a85fbeffcf7f87e930d06e70fa1e9
|
|
| BLAKE2b-256 |
c95431f36cd533c89e55cf92f3587e69dc873bc93cbf65cf8999a9bb891da636
|