Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/learning/getting_started/first_extraction.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ client = instructor.from_provider("openai/gpt-5-nano")

# 3. Extract structured data from LLM
person = client.create(
model="gpt-3.5-turbo", # Works with GPT-4, Claude, Gemini, etc.
response_model=Person, # Type-safe extraction
messages=[
{"role": "user", "content": "John Doe is 30 years old"}
Expand Down Expand Up @@ -133,4 +132,4 @@ You've successfully extracted structured data from an LLM! Next steps:
- **Data Classification**: Categorize text into predefined schemas
- **Information Parsing**: Convert documents into structured databases

Ready to build more complex LLM extractions? Continue to [Response Models](response_models.md) →
Ready to build more complex LLM extractions? Continue to [Response Models](response_models.md) →