Skip to main content

Module for using MNN API

Project description

MNNAI

This repository contains an example of how to use the mnnai library.

Prerequisites

  • Python 3.x
  • MNNAI library installed. You can install it using pip:
pip install mnnai

Usage

Non-Streaming Chat

from mnnai import MNN

client = MNN(
    key='MNN API KEY' # This is the default and can be omitted
)

chat_completion = client.chat.create(
    messages=[
        {
            "role": "user",
            "content": "What's the weather like in New York?",
        }
    ],
    model="gpt-4o-mini",
    web_search=True # Internet search
)
print(chat_completion.choices[0].message.content)

Streaming Chat

stream = client.chat.create(
    messages=[
        {
            "role": "user",
            "content": "Will the neural networks capture the world?",
        }
    ],
    model="gpt-4o-mini",
    stream=True
)

for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Image Generation

Base64 response:

import base64
import os

response = client.images.create(
    prompt="Draw a cute red panda",
    model='dall-e-3'
)

image_base64 = response.data

os.makedirs('images', exist_ok=True)

for i, image_base64 in enumerate(image_base64):
    image_data = base64.b64decode(image_base64.b64_json)

    with open(f'images/image_{i}.png', 'wb') as f:
        f.write(image_data)

print("Images have been successfully downloaded!")

Url:

response = client.images.create(
    prompt="Draw a cute red panda",
    model='dall-e-3',
    n=4,
    enhance=True,
    response_format='url'
)

Async usage

Non-Streaming Chat

import asyncio

async def main():
    chat_completion = await client.chat.async_create(
        messages=[
            {
                "role": "user",
                "content": "Say this is a test",
            }
        ],
        model="gpt-4o-mini",
    )
    print(chat_completion.choices[0].message.content)


asyncio.run(main())

Streaming Chat

import asyncio

async def main():
    stream = await client.chat.async_create(
        model="gpt-4o-mini",
        messages=[{"role": "user", "content": "Say this is a test"}],
        stream=True,
    )
    async for chunk in stream:
        print(chunk.choices[0].delta.content or "", end="")


asyncio.run(main())

Image Generation

Base64 response:

import asyncio
import base64
import os

async def main():
    response = await client.images.async_create(
        prompt="Draw a cute red panda",
        model='dall-e-3',
        n=4,
        enhance=True
    )

    image_base64 = response.data

    os.makedirs('images', exist_ok=True)

    for i, image_base64 in enumerate(image_base64):
        image_data = base64.b64decode(image_base64.b64_json)

        with open(f'images/image_{i}.png', 'wb') as f:
            f.write(image_data)

    print("Images have been successfully downloaded!")


asyncio.run(main())

Url:

import asyncio

async def main():
    response = await client.images.async_create(
        prompt="Draw a cute red panda",
        model='dall-e-3',
        n=4,
        enhance=True,
        response_format='url'
    )

    for url in response.data:
        print(url.url)

asyncio.run(main())

Vision

With an image URL:

prompt = "What is in this image?"
img_url = "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Red_Panda_%2825193861686%29.jpg/1600px-Red_Panda_%2825193861686%29.jpg"

response = client.chat.create(
    model="gpt-4o",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": prompt
                },
                {
                    "type": "image_url",
                    "image_url": {
                        "url": img_url
                    }
                },
            ]
        }
    ],
)

With the image as a base64 encoded string:

import base64

image_path = "image.png"

def encode_image(image_path):
    with open(image_path, "rb") as image_file:
        return base64.b64encode(image_file.read()).decode('utf-8')

base64_image = encode_image(image_path)
prompt = "What is in this image?"

response = client.chat.create(
    model="gpt-4o",
    messages=[
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": prompt
                },
                {
                    "type": "image_url",
                    "image_url": {
                        "url": f"data:image/jpeg;base64,{base64_image}"
                    }
                },
            ]
        }
    ],
)

Auxiliary functions

Get models

print(client.GetModels())

Configuring the client

from mnnai import MNN

client = MNN(
    key='MNN API KEY',
    max_retries=2, # Number of retries in case of failure
    timeout=60, # Maximum amount of time the request will be processed
    debug=True # Whether the application needs to be debugged
)

License

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

Discord

https://discord.gg/Ku2haNjFvj

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

mnnai-5.4.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

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

mnnai-5.4.0-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file mnnai-5.4.0.tar.gz.

File metadata

  • Download URL: mnnai-5.4.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for mnnai-5.4.0.tar.gz
Algorithm Hash digest
SHA256 0c83eb8684b152217df4f47b492c3dae60366ce9da4fb9c401ca6c2a27e853e4
MD5 7d824c1a30159a39f920a4f61e7b2ed7
BLAKE2b-256 861c8dc84657fcc880543300d2a9faef6f2d59d6ba65201f7e36188f4a8de8a2

See more details on using hashes here.

File details

Details for the file mnnai-5.4.0-py3-none-any.whl.

File metadata

  • Download URL: mnnai-5.4.0-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for mnnai-5.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c6f3fa024336f030669c4f0b9179f977fcd4a7038d255117ba459325cf21286
MD5 f8691fe018f7e7e17fef9a054ba19942
BLAKE2b-256 a345deb7421c2fc600ad546a097e7fba2c23dd217d99f150f0f131d05f52df7d

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