2.6 KiB
draft, date, slug, tags, authors
| draft | date | slug | tags | authors | ||||
|---|---|---|---|---|---|---|---|---|
| False | 2023-12-15 | anyscale |
|
|
Structured Outputs with Anyscale
If you want to try this example using instructor hub, you can pull it by running
instructor hub pull --slug anyscale --py > anyscale_example.py
Open-source LLMS are gaining popularity, and the release of Anyscale's Mistral model has made it possible to obtain structured outputs using JSON schema at any scale. Instead of relying on a model's default output mode, you can utilize JSON schema to obtain structured outputs. This approach is a time-saving alternative to extensive prompt engineering.
By the end of this blog post, you will learn how to effectively utilize the instructor at any scale. But before we proceed, let's first explore the concept of patching.
Patching
Instructor's patch enhances a openai api it with the following features:
response_modelincreatecalls that returns a pydantic modelmax_retriesincreatecalls that retries the call if it fails by using a backoff strategy
!!! note "Learn More"
To learn more, please refer to the [docs](../index.md). To understand the benefits of using Pydantic with Instructor, visit the tips and tricks section of the [why use Pydantic](../why.md) page.
Anyscale
The good news is that Anyscale employs the same OpenAI client, and its models support some of these output modes too!
!!! note "Getting access"
If you want to try this out for yourself check out the [Anyscale](https://anyscale.com/) website. You can get started [here](https://docs.anyscale.com/get-started).
Let's explore one of the models available in Anyscale's extensive collection!
from openai import OpenAI
from pydantic import BaseModel
import os
import instructor
class UserDetails(BaseModel):
name: str
age: int
# enables `response_model` in create call
client = instructor.patch(
OpenAI(
base_url="https://api.endpoints.anyscale.com/v1",
api_key=os.environ["ANYSCALE_API_KEY"],
),
# This uses Anyscale's json schema output mode
mode=instructor.Mode.JSON_SCHEMA,
)
resp = client.chat.completions.create(
model="mistralai/Mixtral-8x7B-Instruct-v0.1",
messages=[
{"role": "system", "content": "You are a world class extractor"},
{"role": "user", "content": 'Extract the following entities: "Jason is 20"'},
],
response_model=UserDetails,
)
print(resp)
#> name='Jason' age=20
# # > name='Jason' age=20
You can find more information about Anyscale's output mode support here.