Skip to main content

No project description provided

Project description

FlyMy.AI

Generated with FlyMy.AI in 🚀 70ms
Generated with FlyMy.AI in 🚀 70ms

Welcome to FlyMy.AI inference platform. Our goal is to provide the fastest and most affordable deployment solutions for neural networks and AI applications.

  • Fast Inference: Experience the fastest Stable Diffusion inference globally.
  • Scalability: Autoscaling to millions of users per second.
  • Ease of Use: One-click deployment for any publicly available neural networks.

Website

For more information, visit our website: FlyMy.AI Or connect with us and other users on Discord: Join Discord

Getting Started

This is a Python client for FlyMyAI. It allows you to easily run models and get predictions from your Python code in sync and async mode.

Requirements

  • Python 3.8+

Installation

Install the FlyMyAI client using pip:

pip install flymyai

Authentication

Before using the client, you need to have your API key, username, and project name. In order to get credentials, you have to sign up on flymy.ai and get your personal data on the profile.

Basic Usage

Here's a simple example of how to use the FlyMyAI client:

BERT Sentiment analysis

import flymyai

response = flymyai.run(
    apikey="fly-secret-key",
    model="flymyai/bert",
    payload={"i_text": "What a fabulous fancy building! It looks like a palace!"}
)
print(response.output_data["o_logits"][0])

Sync Streams

For llms you should use stream method

llama 3 8b

from flymyai import client, FlyMyAIPredictException

fma_client = client(apikey="fly-secret-key")

try:
    stream_iterator = fma_client.stream(
            payload={
                "i_prompt": "tell me a story about christmas tree",
                "i_best_of": 12,
                "i_max_tokens": 1024,
                "i_stop": 1,
                "i_temperature": 1,
                "i_top_k": 1,
                "i_top_p": "0.95",
            },
            model="flymyai/llama3"
        )
    for response in stream_iterator:
        print(response.output_data["o_output"].pop(), end="")
except FlyMyAIPredictException as e:
    print(e)
    raise e
finally:
    print()

Async Streams

For llms you should use stream method

Stable Code Instruct 3b

from flymyai import async_client, FlyMyAIPredictException
import asyncio

async def run_stable_code():
    fma_client = async_client(apikey="fly-secret-key")
    try:
        stream_iterator = fma_client.stream(
            payload={
                "i_prompt": "What's the difference between an iterator and a generator in Python?",
                "i_best_of": 12,
                "i_max_tokens": 512,
                "i_stop": 1,
                "i_temperature": 1,
                "i_top_k": 1,
                "i_top_p": "0.95",
            },
            model="flymyai/Stable-Code-Instruct-3b"
        )
        async for response in stream_iterator:
            print(response.output_data["o_output"].pop(), end="")
    except FlyMyAIPredictException as e:
        print(e)
        raise e
    finally:
        print()


asyncio.run(run_stable_code())

File Inputs

ResNet image classification

You can pass file inputs to models using file paths:

import flymyai
import pathlib

response = flymyai.run(
    apikey="fly-secret-key",
    model="flymyai/resnet",
    payload={"i_image": pathlib.Path("/path/to/image.png")}
)
print(response.output_data["o_495"])

File Response Handling

Files received from the neural network are always encoded in base64 format. To process these files, you need to decode them first. Here's an example of how to handle an image file:

StableDiffusion Turbo image generation in ~50ms 🚀

import base64
import flymyai

response = flymyai.run(
    apikey="fly-secret-key",
    model="flymyai/SDTurboFMAAceleratedH100",
    payload={
        "i_prompt": "An astronaut riding a rainbow unicorn, cinematic, dramatic, photorealistic",
    }
)
base64_image = response.output_data["o_sample"][0]
image_data = base64.b64decode(base64_image)
with open("generated_image.jpg", "wb") as file:
    file.write(image_data)

Asynchronous Requests

FlyMyAI supports asynchronous requests for improved performance. Here's how to use it:

import asyncio
import flymyai


async def main():
    payloads = [
        {
            "i_prompt": "An astronaut riding a rainbow unicorn, cinematic, dramatic, photorealistic",
            "i_negative_prompt": "Dark colors, gloomy atmosphere, horror",
            "i_seed": count,
            "i_denoising_steps": 4,
            "scheduler": "DPM++ SDE"
         }
        for count in range(1, 10)
    ]
    async with asyncio.TaskGroup() as gr:
        tasks = [
            gr.create_task(
                flymyai.async_run(
                    apikey="fly-secret-key",
                    model="flymyai/DreamShaperV2-1",
                    payload=payload
                )
            )
            for payload in payloads
        ]
    results = await asyncio.gather(*tasks)
    for result in results:
        print(result.output_data["o_output"])


asyncio.run(main())

Running Models in the Background

To run a model in the background, simply use the async_run() method:

import asyncio
import flymyai
import pathlib


async def background_task():
    payload = {"i_audio": pathlib.Path("/path/to/audio.mp3")}
    response = await flymyai.async_run(
        apikey="fly-secret-key",
        model="flymyai/whisper",
        payload=payload
    )
    print("Background task completed:", response.output_data["o_transcription"])


async def main():
    task = asyncio.create_task(background_task())
    await task

asyncio.run(main())
# Continue with other operations while the model runs in the background

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

flymyai-1.0.16.tar.gz (16.8 kB view details)

Uploaded Source

Built Distribution

flymyai-1.0.16-py3-none-any.whl (19.3 kB view details)

Uploaded Python 3

File details

Details for the file flymyai-1.0.16.tar.gz.

File metadata

  • Download URL: flymyai-1.0.16.tar.gz
  • Upload date:
  • Size: 16.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1022-azure

File hashes

Hashes for flymyai-1.0.16.tar.gz
Algorithm Hash digest
SHA256 76d10ee798f180ab75115a562a6eb13ac77fc9409e4512df424b46df11a90f20
MD5 b34463a7484d5110274469046335fe4b
BLAKE2b-256 d4e5cb29c58beb0de67cab3ea8cab36cc7de784e796034a8ab13ca3df26a15e9

See more details on using hashes here.

File details

Details for the file flymyai-1.0.16-py3-none-any.whl.

File metadata

  • Download URL: flymyai-1.0.16-py3-none-any.whl
  • Upload date:
  • Size: 19.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1022-azure

File hashes

Hashes for flymyai-1.0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 1c0062fa0e7c583761532a0b869be0e23720ef252da09fb837f1919955ca49a1
MD5 07e1dc47ffcf9ed5ec81965fa017549d
BLAKE2b-256 f33c88d0f1e093180f684b6c79896a8c790c20dd3b19da187ec028d9bb9e6717

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page