Metadata-Version: 2.4
Name: modeloop
Version: 0.1.0
Summary: A multi-provider AI routing and fallback library
Author: Athul Vinod
License-Expression: MIT
Keywords: ai,llm,ai-routing,llm-routing,fallback,openrouter,groq,huggingface
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31

Modeloop
A multi-provider AI routing and fallback library.

Installation

pip install modeloop

Basic usage

from modeloop import Modeloop

ai = Modeloop("config.json")

result = ai.ask("Hello")

print(result)
