mixedbread ai (https://www.mixedbread.ai)
Project description
mixedbread ai Python SDK
Introduction to mixedbread ai
mixedbread ai is a cutting-edge research and development company specializing in Natural Language Processing (NLP). At our core, we focus on advancing the field of NLP through innovative research, offering powerful tools for embeddings, retrieval, and other NLP functionalities. Our mission is to make NLP accessible to everyone on every device. To learn more about mixedbread ai, visit our website.
Requirements.
Python 3.7+
Installation & Usage
Installation
If the python package is hosted on a repository, you can install directly using:
pip install mixedbread_ai
Usage
from mixedbread_ai import MixedbreadAi
import os
os.environ["MIXEDBREAD_API_KEY"] = "{YOUR_API_KEY}"
mxbai = MixedbreadAi()
embeddings = mxbai.embeddings(
model="e5-large-v2",
input=["I like to eat apples.", "I like to eat bananas."]
)
print(embeddings)
Alternatively, you can set the api key via configuration:
from mixedbread_ai import MixedbreadAi
mxbai = MixedbreadAi(
api_key="{YOUR_API_KEY}",
base_url="https://api.mixedbread.ai",
timeout=30,
headers={"X-Custom-Header": "foobar"},
...
)
embeddings = mxbai.embeddings(
model="e5-large-v2",
input=["I like to eat apples.", "I like to eat bananas."],
normalized=False
)
print(embeddings)
Don't forget to replace "{YOUR_API_KEY}"
with your actual API key. If you don't have an API key, you can get one for free by signing up for an account at mixedbread.ai.
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
Hashes for mixedbread_ai-1.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53ca5cd1421714693f1f4d0c45ca0f37ed24f27eb917d0b5fb82a80284946470 |
|
MD5 | ab709f25bbd94745fad845c3ad49dad8 |
|
BLAKE2b-256 | e218d54e70eadc701ec13743ce0add28cb8315f874fd52a797459306b89d35e3 |