Skip to main content

Lightweight parallel AI API calls in Python.

Project description

Parallax-AI

Lightweight parallel AI API calls in Python.

Installation

You can install Parallax using pip:

pip install parallax-ai

Testing

vllm serve google/gemma-3-27b-it
python -m parallax_ai.test
>>>
ParallaxOpenAIClient.run:
First Output Elapsed Time: 4.40s
Total Elapsed Time (500 requires): 4.40s

ParallaxOpenAIClient.irun:
First Output Elapsed Time: 1.95s
Total Elapsed Time (500 requires): 3.51s

Vanilla OpenAI Client:
First Output Elapsed Time: 0.72s
Total Elapsed Time (500 requires): 95.70s

Usage (Compatible with any OpenAI-API–compatible server, e.g., vLLM)

Initialize Client

from parallax_ai import ParallaxOpenAIClient

# Initialize Client
parallax_client = ParallaxOpenAIClient(
    api_key=YOUR_API_KEY,
    base_url=YOUR_API_BASE_URL,
)

list_of_messages = [
    [{"role": "user", "content": "..."}],
    [{"role": "user", "content": "..."}],
    [{"role": "user", "content": "..."}],
    .
    .
    .
    [{"role": "user", "content": "..."}],
]

run: Returns a list of outputs in order (waits until all are finished)

outputs = parallax_client.run(list_of_messages, model="gpt-3.5-turbo")
for output in outputs:
    # PROCESS OUTPUT
    pass

irun: Returns outputs one by one in order (yields as soon as each finishes)

for output in parallax_client.irun(list_of_messages, model="gpt-3.5-turbo"):
    # PROCESS OUTPUT
    pass

irun_unordered: Returns outputs as they finish (order not guaranteed)

for output, index in parallax_client.irun_unordered(list_of_messages, model="gpt-3.5-turbo"):
    # PROCESS OUTPUT
    pass

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

parallax_ai-0.3.4.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

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

parallax_ai-0.3.4-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file parallax_ai-0.3.4.tar.gz.

File metadata

  • Download URL: parallax_ai-0.3.4.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for parallax_ai-0.3.4.tar.gz
Algorithm Hash digest
SHA256 b86e334222395979326e2a7a60b70a42a95aacdbb9c8962917e00dcd59e2d741
MD5 e787b751b6dbed4ec78476701385683a
BLAKE2b-256 1e00421f48dde0efc577df198e34a46502f57b4df9c41df386d661cd53e66116

See more details on using hashes here.

File details

Details for the file parallax_ai-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: parallax_ai-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 13.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for parallax_ai-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 dbee9592446c22895895154feaf78d504040de2b46507e5915b6f28aa90e373e
MD5 b67bb47fddeb857da6bec35163aa12e1
BLAKE2b-256 c52ab3cf69c1f67484b17988f5c7965d7bfd76a5c36eadc8a20cb61fbc891f80

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