Skip to main content

LLM abstractions that aren't obstructions

Project description

Tests Coverage Docs PyPI Version Stars License Stars


Mirascope is a powerful, flexible, and user-friendly library that simplifies the process of working with LLMs through a unified interface that works across various supported providers, including OpenAI, Anthropic, Mistral, Gemini, Groq, Cohere, LiteLLM, Azure AI, Vertex AI, and Bedrock.

Whether you're generating text, extracting structured information, or developing complex AI-driven agent systems, Mirascope provides the tools you need to streamline your development process and create powerful, robust applications.

30 Second Quickstart

Install Mirascope, specifying the provider(s) you intend to use, and set your API key:

pip install "mirascope[openai]"
export OPENAI_API_KEY=XXXXX

Make your first call to an LLM to extract the title and author of a book from unstructured text:

from mirascope.core import openai
from pydantic import BaseModel

class Book(BaseModel):
    title: str
    author: str

@openai.call("gpt-4o-mini", response_model=Book)
def extract_book(text: str) -> str:
    return f"Extract {text}"

book = extract_book("The Name of the Wind by Patrick Rothfuss")
assert isinstance(book, Book)
print(book)
# Output: title='The Name of the Wind' author='Patrick Rothfuss'

Tutorials

Check out our quickstart tutorial and many other tutorials for an interactive way to getting started with Mirascope.

Usage

For a complete guide on how to use all of the various features Mirascope has to offer, read through our Learn documentation.

Versioning

Mirascope uses Semantic Versioning.

Licence

This project is licensed under the terms of the MIT License.

Project details


Release history Release notifications | RSS feed

This version

1.7.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mirascope-1.7.0.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

mirascope-1.7.0-py3-none-any.whl (248.4 kB view details)

Uploaded Python 3

File details

Details for the file mirascope-1.7.0.tar.gz.

File metadata

  • Download URL: mirascope-1.7.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for mirascope-1.7.0.tar.gz
Algorithm Hash digest
SHA256 688c9ecf31909755f6026a3551ba43366f33ca9e807cc87421c752fddf90d371
MD5 ec3aa2cbf6c92b7b702e99b84f9a7dc8
BLAKE2b-256 7cd5b38cc54bf23d4d47d73e8dcc3497e8bad3ed8b3741c7f4c129914a2e4c29

See more details on using hashes here.

File details

Details for the file mirascope-1.7.0-py3-none-any.whl.

File metadata

  • Download URL: mirascope-1.7.0-py3-none-any.whl
  • Upload date:
  • Size: 248.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for mirascope-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73660602d9079fa255b06507fa9547dbdbb62a4443750d562b9092de2947a725
MD5 1764728a90884c174158f721c8b3f76f
BLAKE2b-256 d0f411c87bada3c50c8562c5d11a03249d01179e0c5370f84adeb8dddf29c3d4

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