[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-70938":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":23,"hasPages":25,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":35,"readmeContent":36,"aiSummary":37,"trendingCount":16,"starSnapshotCount":16,"syncStatus":38,"lastSyncTime":39,"discoverSource":40},70938,"outlines","dottxt-ai\u002Foutlines","dottxt-ai","Structured Outputs","https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002F",null,"Python",13948,707,51,88,0,13,37,122,39,117.05,"Apache License 2.0",false,"main",true,[27,28,29,30,31,32,33,34],"cfg","generative-ai","json","llms","prompt-engineering","regex","structured-generation","symbolic-ai","2026-06-12 04:00:58","\u003Cdiv align=\"center\" style=\"margin-bottom: 1em;\">\n\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Flogo-light-mode.svg#gh-light-mode-only\" alt=\"Outlines Logo\" width=300>\u003C\u002Fimg>\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Flogo-dark-mode.svg#gh-dark-mode-only\" alt=\"Outlines Logo\" width=300>\u003C\u002Fimg>\n\n\n 🗒️ *Structured outputs for LLMs* 🗒️\n\nMade with ❤👷️ by the team at [.txt](https:\u002F\u002Fdottxt.co)\n\u003Cbr>Trusted by NVIDIA, Cohere, HuggingFace, vLLM, etc.\n\n\u003C!-- Project Badges -->\n[![PyPI Version][pypi-version-badge]][pypi]\n[![Downloads][downloads-badge]][pypistats]\n[![Stars][stars-badge]][stars]\n\n\u003C!-- Community Badges -->\n[![Discord][discord-badge]][discord]\n[![Blog][dottxt-blog-badge]][dottxt-blog]\n[![Twitter][twitter-badge]][twitter]\n\n\u003Cbr>The .txt API is currently in early access. **[Request access here →](https:\u002F\u002Fh1xbpbfsf0w.typeform.com\u002Fto\u002FfwQNWmS8?utm_source=github&utm_medium=organic&utm_campaign=outlines)**\n\n\n\u003C\u002Fdiv>\n\n## 🚀 Building the future of structured generation\n\nWe're working with select partners to develop new interfaces to structured generation.\n\nNeed XML, FHIR, custom schemas or grammars? Let's talk.\n\nAudit your schema: share one schema, we show you what breaks under generation, the constraints that fix it, and compliance rates before and after. Sign up [here](https:\u002F\u002Fh1xbpbfsf0w.typeform.com\u002Fto\u002FrtFUraA2?typeform).\n\n## Table of Contents\n\n- [Why Outlines?](#why-outlines)\n- [Quickstart](#quickstart)\n- [Real-World Examples](#real-world-examples)\n  - [🙋‍♂️ Customer Support Triage](#customer-support-triage)\n  - [📦 E-commerce Product Categorization](#e-commerce-product-categorization)\n  - [📊 Parse Event Details with Incomplete Data](#parse-event-details-with-incomplete-data)\n  - [🗂️ Categorize Documents into Predefined Types](#categorize-documents-into-predefined-types)\n  - [📅 Schedule a Meeting with Function Calling](#schedule-a-meeting-with-function-calling)\n  - [📝 Dynamically Generate Prompts with Re-usable Templates](#dynamically-generate-prompts-with-re-usable-templates)\n- [They Use Outlines](#they-use-outlines)\n- [Model Integrations](#model-integrations)\n- [Core Features](#core-features)\n- [Other Features](#other-features)\n- [About .txt](#about-txt)\n- [Community](#community)\n\n\u003Cdiv align=\"center\">\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Finstall.png\" width=300>\u003C\u002Fimg>\u003C\u002Fdiv>\n\n## Why Outlines?\n\nLLMs are powerful but their outputs are unpredictable. Most solutions attempt to fix bad outputs after generation using parsing, regex, or fragile code that breaks easily.\n\nOutlines guarantees structured outputs during generation — directly from any LLM.\n\n- **Works with any model** - Same code runs across OpenAI, Ollama, vLLM, and more\n- **Simple integration** - Just pass your desired output type: `model(prompt, output_type)`\n- **Guaranteed valid structure** - No more parsing headaches or broken JSON\n- **Provider independence** - Switch models without changing code\n\n\n### The Outlines Philosophy\n\n\u003Cdiv align=\"center\">\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Fuse_philosophy.png\" width=300>\u003C\u002Fimg>\u003C\u002Fdiv>\n\nOutlines follows a simple pattern that mirrors Python's own type system. Simply specify the desired output type, and Outlines will ensure your data matches that structure exactly:\n\n- For a yes\u002Fno response, use `Literal[\"Yes\", \"No\"]`\n- For numerical values, use `int`\n- For complex objects, define a structure with a [Pydantic model](https:\u002F\u002Fdocs.pydantic.dev\u002Flatest\u002F)\n\n## Quickstart\n\nGetting started with outlines is simple:\n\n### 1. Install outlines\n\n``` shell\npip install outlines\n```\n\n### 2. Connect to your preferred model\n\n``` python\nimport outlines\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\n\n\nMODEL_NAME = \"microsoft\u002FPhi-3-mini-4k-instruct\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n```\n\n### 3. Start with simple structured outputs\n\n``` python\nfrom typing import Literal\nfrom pydantic import BaseModel\n\n\n# Simple classification\nsentiment = model(\n    \"Analyze: 'This product completely changed my life!'\",\n    Literal[\"Positive\", \"Negative\", \"Neutral\"]\n)\nprint(sentiment)  # \"Positive\"\n\n# Extract specific types\ntemperature = model(\"What's the boiling point of water in Celsius?\", int)\nprint(temperature)  # 100\n```\n\n### 4. Create complex structures\n\n``` python\nfrom pydantic import BaseModel\nfrom enum import Enum\n\nclass Rating(Enum):\n    poor = 1\n    fair = 2\n    good = 3\n    excellent = 4\n\nclass ProductReview(BaseModel):\n    rating: Rating\n    pros: list[str]\n    cons: list[str]\n    summary: str\n\nreview = model(\n    \"Review: The XPS 13 has great battery life and a stunning display, but it runs hot and the webcam is poor quality.\",\n    ProductReview,\n    max_new_tokens=200,\n)\n\nreview = ProductReview.model_validate_json(review)\nprint(f\"Rating: {review.rating.name}\")  # \"Rating: good\"\nprint(f\"Pros: {review.pros}\")           # \"Pros: ['great battery life', 'stunning display']\"\nprint(f\"Summary: {review.summary}\")     # \"Summary: Good laptop with great display but thermal issues\"\n```\n\n## Real-world examples\n\nHere are production-ready examples showing how Outlines solves common problems:\n\n\u003Cdetails id=\"customer-support-triage\">\u003Csummary>\u003Cb>🙋‍♂️ Customer Support Triage\u003C\u002Fb>\n\u003Cbr>This example shows how to convert a free-form customer email into a structured service ticket. By parsing attributes like priority, category, and escalation flags, the code enables automated routing and handling of support issues.\n\u003C\u002Fsummary>\n\n``` python\nimport outlines\nfrom enum import Enum\nfrom pydantic import BaseModel\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\nfrom typing import List\n\n\nMODEL_NAME = \"microsoft\u002FPhi-3-mini-4k-instruct\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\n\ndef alert_manager(ticket):\n    print(\"Alert!\", ticket)\n\n\nclass TicketPriority(str, Enum):\n    low = \"low\"\n    medium = \"medium\"\n    high = \"high\"\n    urgent = \"urgent\"\n\nclass ServiceTicket(BaseModel):\n    priority: TicketPriority\n    category: str\n    requires_manager: bool\n    summary: str\n    action_items: List[str]\n\n\ncustomer_email = \"\"\"\nSubject: URGENT - Cannot access my account after payment\n\nI paid for the premium plan 3 hours ago and still can't access any features.\nI've tried logging out and back in multiple times. This is unacceptable as I\nhave a client presentation in an hour and need the analytics dashboard.\nPlease fix this immediately or refund my payment.\n\"\"\"\n\nprompt = f\"\"\"\n\u003C|im_start|>user\nAnalyze this customer email:\n\n{customer_email}\n\u003C|im_end|>\n\u003C|im_start|>assistant\n\"\"\"\n\nticket = model(\n    prompt,\n    ServiceTicket,\n    max_new_tokens=500\n)\n\n# Use structured data to route the ticket\nticket = ServiceTicket.model_validate_json(ticket)\nif ticket.priority == \"urgent\" or ticket.requires_manager:\n    alert_manager(ticket)\n```\n\u003C\u002Fdetails>\n\n\u003Cdetails id=\"e-commerce-product-categorization\">\u003Csummary>\u003Cb>📦 E-commerce product categorization\u003C\u002Fb>\n\u003Cbr>This use case demonstrates how outlines can transform product descriptions into structured categorization data (e.g., main category, sub-category, and attributes) to streamline tasks such as inventory management. Each product description is processed automatically, reducing manual categorization overhead.\n\u003C\u002Fsummary>\n\n```python\nimport outlines\nfrom pydantic import BaseModel\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\nfrom typing import List, Optional\n\n\nMODEL_NAME = \"microsoft\u002FPhi-3-mini-4k-instruct\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\n\ndef update_inventory(product, category, sub_category):\n    print(f\"Updated {product.split(',')[0]} in category {category}\u002F{sub_category}\")\n\n\nclass ProductCategory(BaseModel):\n    main_category: str\n    sub_category: str\n    attributes: List[str]\n    brand_match: Optional[str]\n\n# Process product descriptions in batches\nproduct_descriptions = [\n    \"Apple iPhone 15 Pro Max 256GB Titanium, 6.7-inch Super Retina XDR display with ProMotion\",\n    \"Organic Cotton T-Shirt, Men's Medium, Navy Blue, 100% Sustainable Materials\",\n    \"KitchenAid Stand Mixer, 5 Quart, Red, 10-Speed Settings with Dough Hook Attachment\"\n]\n\ntemplate = outlines.Template.from_string(\"\"\"\n\u003C|im_start|>user\nCategorize this product:\n\n{{ description }}\n\u003C|im_end|>\n\u003C|im_start|>assistant\n\"\"\")\n\n# Get structured categorization for all products\ncategories = model(\n    [template(description=desc) for desc in product_descriptions],\n    ProductCategory,\n    max_new_tokens=200\n)\n\n# Use categorization for inventory management\ncategories = [\n    ProductCategory.model_validate_json(category) for category in categories\n]\nfor product, category in zip(product_descriptions, categories):\n    update_inventory(product, category.main_category, category.sub_category)\n```\n\u003C\u002Fdetails>\n\n\u003Cdetails id=\"parse-event-details-with-incomplete-data\">\u003Csummary>\u003Cb>📊 Parse event details with incomplete data\u003C\u002Fb>\n\u003Cbr>This example uses outlines to parse event descriptions into structured information (like event name, date, location, type, and topics), even handling cases where the data is incomplete. It leverages union types to return either structured event data or a fallback “I don’t know” answer, ensuring robust extraction in varying scenarios.\n\u003C\u002Fsummary>\n\n```python\nimport outlines\nfrom typing import Union, List, Literal\nfrom pydantic import BaseModel\nfrom enum import Enum\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\n\n\nMODEL_NAME = \"microsoft\u002FPhi-3-mini-4k-instruct\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\nclass EventType(str, Enum):\n    conference = \"conference\"\n    webinar = \"webinar\"\n    workshop = \"workshop\"\n    meetup = \"meetup\"\n    other = \"other\"\n\n\nclass EventInfo(BaseModel):\n    \"\"\"Structured information about a tech event\"\"\"\n    name: str\n    date: str\n    location: str\n    event_type: EventType\n    topics: List[str]\n    registration_required: bool\n\n# Create a union type that can either be a structured EventInfo or \"I don't know\"\nEventResponse = Union[EventInfo, Literal[\"I don't know\"]]\n\n# Sample event descriptions\nevent_descriptions = [\n    # Complete information\n    \"\"\"\n    Join us for DevCon 2023, the premier developer conference happening on November 15-17, 2023\n    at the San Francisco Convention Center. Topics include AI\u002FML, cloud infrastructure, and web3.\n    Registration is required.\n    \"\"\",\n\n    # Insufficient information\n    \"\"\"\n    Tech event next week. More details coming soon!\n    \"\"\"\n]\n\n# Process events\nresults = []\nfor description in event_descriptions:\n    prompt = f\"\"\"\n\u003C|im_start>system\nYou are a helpful assistant\n\u003C|im_end|>\n\u003C|im_start>user\nExtract structured information about this tech event:\n\n{description}\n\nIf there is enough information, return a JSON object with the following fields:\n\n- name: The name of the event\n- date: The date where the event is taking place\n- location: Where the event is taking place\n- event_type: either 'conference', 'webinar', 'workshop', 'meetup' or 'other'\n- topics: a list of topics of the conference\n- registration_required: a boolean that indicates whether registration is required\n\nIf the information available does not allow you to fill this JSON, and only then, answer 'I don't know'.\n\u003C|im_end|>\n\u003C|im_start|>assistant\n\"\"\"\n    # Union type allows the model to return structured data or \"I don't know\"\n    result = model(prompt, EventResponse, max_new_tokens=200)\n    results.append(result)\n\n# Display results\nfor i, result in enumerate(results):\n    print(f\"Event {i+1}:\")\n    if isinstance(result, str):\n        print(f\"  {result}\")\n    else:\n        # It's an EventInfo object\n        print(f\"  Name: {result.name}\")\n        print(f\"  Type: {result.event_type}\")\n        print(f\"  Date: {result.date}\")\n        print(f\"  Topics: {', '.join(result.topics)}\")\n    print()\n\n# Use structured data in downstream processing\nstructured_count = sum(1 for r in results if isinstance(r, EventInfo))\nprint(f\"Successfully extracted data for {structured_count} of {len(results)} events\")\n```\n\u003C\u002Fdetails>\n\n\u003Cdetails id=\"categorize-documents-into-predefined-types\">\u003Csummary>\u003Cb>🗂️ Categorize documents into predefined types\u003C\u002Fb>\n\u003Cbr>In this case, outlines classifies documents into predefined categories (e.g., “Financial Report,” “Legal Contract”) using a literal type specification. The resulting classifications are displayed in both a table format and through a category distribution summary, illustrating how structured outputs can simplify content management.\n\u003C\u002Fsummary>\n\n```python\nimport outlines\nfrom typing import Literal, List\nimport pandas as pd\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\n\n\nMODEL_NAME = \"microsoft\u002FPhi-3-mini-4k-instruct\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\n\n# Define classification categories using Literal\nDocumentCategory = Literal[\n    \"Financial Report\",\n    \"Legal Contract\",\n    \"Technical Documentation\",\n    \"Marketing Material\",\n    \"Personal Correspondence\"\n]\n\n# Sample documents to classify\ndocuments = [\n    \"Q3 Financial Summary: Revenue increased by 15% year-over-year to $12.4M. EBITDA margin improved to 23% compared to 19% in Q3 last year. Operating expenses...\",\n\n    \"This agreement is made between Party A and Party B, hereinafter referred to as 'the Parties', on this day of...\",\n\n    \"The API accepts POST requests with JSON payloads. Required parameters include 'user_id' and 'transaction_type'. The endpoint returns a 200 status code on success.\"\n]\n\ntemplate = outlines.Template.from_string(\"\"\"\n\u003C|im_start|>user\nClassify the following document into exactly one category among the following categories:\n- Financial Report\n- Legal Contract\n- Technical Documentation\n- Marketing Material\n- Personal Correspondence\n\nDocument:\n{{ document }}\n\u003C|im_end|>\n\u003C|im_start|>assistant\n\"\"\")\n\n# Classify documents\ndef classify_documents(texts: List[str]) -> List[DocumentCategory]:\n    results = []\n\n    for text in texts:\n        prompt = template(document=text)\n        # The model must return one of the predefined categories\n        category = model(prompt, DocumentCategory, max_new_tokens=200)\n        results.append(category)\n\n    return results\n\n# Perform classification\nclassifications = classify_documents(documents)\n\n# Create a simple results table\nresults_df = pd.DataFrame({\n    \"Document\": [doc[:50] + \"...\" for doc in documents],\n    \"Classification\": classifications\n})\n\nprint(results_df)\n\n# Count documents by category\ncategory_counts = pd.Series(classifications).value_counts()\nprint(\"\\nCategory Distribution:\")\nprint(category_counts)\n```\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary id=\"schedule-a-meeting-with-function-calling\">\u003Cb>📅 Schedule a meeting from requests with Function Calling\u003C\u002Fb>\n\u003Cbr>This example demonstrates how outlines can interpret a natural language meeting request and translate it into a structured format matching a predefined function’s parameters. Once the meeting details are extracted (e.g., title, date, duration, attendees), they are used to automatically schedule the meeting.\n\u003C\u002Fsummary>\n\n```python\nimport outlines\nimport json\nfrom typing import List, Optional\nfrom datetime import date\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\n\n\nMODEL_NAME = \"microsoft\u002Fphi-4\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\n\n# Define a function with typed parameters\ndef schedule_meeting(\n    title: str,\n    date: date,\n    duration_minutes: int,\n    attendees: List[str],\n    location: Optional[str] = None,\n    agenda_items: Optional[List[str]] = None\n):\n    \"\"\"Schedule a meeting with the specified details\"\"\"\n    # In a real app, this would create the meeting\n    meeting = {\n        \"title\": title,\n        \"date\": date,\n        \"duration_minutes\": duration_minutes,\n        \"attendees\": attendees,\n        \"location\": location,\n        \"agenda_items\": agenda_items\n    }\n    return f\"Meeting '{title}' scheduled for {date} with {len(attendees)} attendees\"\n\n# Natural language request\nuser_request = \"\"\"\nI need to set up a product roadmap review with the engineering team for next\nTuesday at 2pm. It should last 90 minutes. Please invite john@example.com,\nsarah@example.com, and the product team at product@example.com.\n\"\"\"\n\n# Outlines automatically infers the required structure from the function signature\nprompt = f\"\"\"\n\u003C|im_start|>user\nExtract the meeting details from this request:\n\n{user_request}\n\u003C|im_end|>\n\u003C|im_start|>assistant\n\"\"\"\nmeeting_params = model(prompt, schedule_meeting, max_new_tokens=200)\n\n# The result is a dictionary matching the function parameters\nmeeting_params = json.loads(meeting_params)\nprint(meeting_params)\n\n# Call the function with the extracted parameters\nresult = schedule_meeting(**meeting_params)\nprint(result)\n# \"Meeting 'Product Roadmap Review' scheduled for 2023-10-17 with 3 attendees\"\n```\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary id=\"dynamically-generate-prompts-with-re-usable-templates\">\u003Cb>📝 Dynamically generate prompts with re-usable templates\u003C\u002Fb>\n\u003Cbr>Using Jinja-based templates, this example shows how to generate dynamic prompts for tasks like sentiment analysis. It illustrates how to easily re-use and customize prompts—including few-shot learning strategies—for different content types while ensuring the outputs remain structured.\n\u003C\u002Fsummary>\n\n```python\nimport outlines\nfrom typing import List, Literal\nfrom transformers import AutoTokenizer, AutoModelForCausalLM\n\n\nMODEL_NAME = \"microsoft\u002Fphi-4\"\nmodel = outlines.from_transformers(\n    AutoModelForCausalLM.from_pretrained(MODEL_NAME, device_map=\"auto\"),\n    AutoTokenizer.from_pretrained(MODEL_NAME)\n)\n\n\n# 1. Create a reusable template with Jinja syntax\nsentiment_template = outlines.Template.from_string(\"\"\"\n\u003C|im_start>user\nAnalyze the sentiment of the following {{ content_type }}:\n\n{{ text }}\n\nProvide your analysis as either \"Positive\", \"Negative\", or \"Neutral\".\n\u003C|im_end>\n\u003C|im_start>assistant\n\"\"\")\n\n# 2. Generate prompts with different parameters\nreview = \"This restaurant exceeded all my expectations. Fantastic service!\"\nprompt = sentiment_template(content_type=\"review\", text=review)\n\n# 3. Use the templated prompt with structured generation\nresult = model(prompt, Literal[\"Positive\", \"Negative\", \"Neutral\"])\nprint(result)  # \"Positive\"\n\n# Templates can also be loaded from files\nexample_template = outlines.Template.from_file(\"templates\u002Ffew_shot.txt\")\n\n# Use with examples for few-shot learning\nexamples = [\n    (\"The food was cold\", \"Negative\"),\n    (\"The staff was friendly\", \"Positive\")\n]\nfew_shot_prompt = example_template(examples=examples, query=\"Service was slow\")\nprint(few_shot_prompt)\n```\n\u003C\u002Fdetails>\n\n## They use outlines\n\n\u003Cdiv align=\"center\">\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Freadme-light.png#gh-light-mode-only\" alt=\"Users Logo\">\u003C\u002Fimg>\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Freadme-dark.png#gh-dark-mode-only\" alt=\"Users Logo\">\u003C\u002Fimg>\n\u003C\u002Fdiv>\n\n## Model Integrations\n\n| Model type | Description | Documentation |\n|---------|-------------|:-------------:|\n| **Server Support** | vLLM and Ollama | [Server Integrations →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fmodels\u002F) |\n| **Local Model Support** | transformers and llama.cpp | [Model Integrations →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fmodels\u002F) |\n| **API Support** | OpenAI, Gemini, and [Dottxt](https:\u002F\u002Fh1xbpbfsf0w.typeform.com\u002Fto\u002FfwQNWmS8?utm_source=github&utm_medium=organic&utm_campaign=outlines) | [API Integrations →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fmodels\u002F) |\n\n## Core Features\n\n| Feature | Description | Documentation |\n|---------|-------------|:-------------:|\n| **Multiple Choices** | Constrain outputs to predefined options | [Multiple Choices Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#multiple-choices) |\n| **Function Calls** | Infer structure from function signatures | [Function Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#json-schemas) |\n| **JSON\u002FPydantic** | Generate outputs matching JSON schemas | [JSON Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#json-schemas) |\n| **Regular Expressions** | Generate text following a regex pattern | [Regex Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#regex-patterns) |\n| **Grammars** | Enforce complex output structures | [Grammar Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#context-free-grammars) |\n\n## Other Features\n\n| Feature | Description | Documentation |\n|---------|-------------|:-------------:|\n| **Prompt templates** | Separate complex prompts from code | [Template Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Futility\u002Ftemplate\u002F) |\n| **Custome types** | Intuitive interface to build complex types | [Python Types Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Fcore\u002Foutput_types\u002F#basic-python-types) |\n| **Applications** | Encapsulate templates and types into functions | [Application Guide →](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Ffeatures\u002Futility\u002Fapplication\u002F) |\n\n## About .txt\n\n\u003Cdiv align=\"center\">\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Fdottxt-light.svg#gh-light-mode-only\" alt=\"dottxt logo\" width=100>\u003C\u002Fimg>\n\u003Cimg src=\".\u002Fdocs\u002Fassets\u002Fimages\u002Fdottxt-dark.svg#gh-dark-mode-only\" alt=\"dottxt logo\" width=100>\u003C\u002Fimg>\n\u003C\u002Fdiv>\n\nOutlines is developed and maintained by [.txt](https:\u002F\u002Fdottxt.co), a company dedicated to making LLMs more reliable for production applications.\n\nOur focus is on advancing structured generation technology through:\n\n- 🧪 **Cutting-edge Research**: We publish our findings on [structured generation](http:\u002F\u002Fblog.dottxt.co\u002Fperformance-gsm8k.html)\n- 🚀 **Enterprise-grade solutions**: You can license [our enterprise-grade libraries](https:\u002F\u002Fdocs.dottxt.co).\n- 🧩 **Open Source Collaboration**: We believe in building in public and contributing to the community\n\nFollow us on [Twitter](https:\u002F\u002Ftwitter.com\u002Fdottxtai) or check out our [blog](https:\u002F\u002Fblog.dottxt.co\u002F) to stay updated on our latest work in making LLMs more reliable.\n\n## Community\n\n\u003Cdiv align=\"center\" style=\"margin-bottom: 1em;\">\n\n[![Contributors][contributors-badge]][contributors]\n[![Stars][stars-badge]][stars]\n[![Downloads][downloads-badge]][pypistats]\n[![Discord badge][discord-badge]][discord]\n\n\u003C\u002Fdiv>\n\n- 💡 **Have an idea?** Come chat with us on [Discord][discord]\n- 🐞 **Found a bug?** Open an [issue](https:\u002F\u002Fgithub.com\u002Fdottxt-ai\u002Foutlines\u002Fissues)\n- 🧩  **Want to contribute?** Consult our [contribution guide](https:\u002F\u002Fdottxt-ai.github.io\u002Foutlines\u002Flatest\u002Fcommunity\u002Fcontribute\u002F).\n\n\n## Cite Outlines\n\n```\n@article{willard2023efficient,\n  title={Efficient Guided Generation for Large Language Models},\n  author={Willard, Brandon T and Louf, R{\\'e}mi},\n  journal={arXiv preprint arXiv:2307.09702},\n  year={2023}\n}\n```\n\n[contributors]: https:\u002F\u002Fgithub.com\u002Fdottxt-ai\u002Foutlines\u002Fgraphs\u002Fcontributors\n[contributors-badge]: https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fcontributors\u002Fdottxt-ai\u002Foutlines?style=flat-square&logo=github&logoColor=white&color=ECEFF4\n[dottxt-blog]: https:\u002F\u002Fblog.dottxt.co\u002F\n[dottxt-blog-badge]: https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdottxt%20blog-a6b4a3\n[dottxt-twitter]: https:\u002F\u002Ftwitter.com\u002Fdottxtai\n[dottxt-twitter-badge]: https:\u002F\u002Fimg.shields.io\u002Ftwitter\u002Ffollow\u002Fdottxtai?style=social\n[discord]: https:\u002F\u002Fdiscord.gg\u002FR9DSu34mGd\n[discord-badge]: https:\u002F\u002Fimg.shields.io\u002Fdiscord\u002F1182316225284554793?color=ddb8ca&logo=discord&logoColor=white&style=flat-square\n[downloads-badge]: https:\u002F\u002Fimg.shields.io\u002Fpypi\u002Fdm\u002Foutlines?color=A6B4A3&logo=python&logoColor=white&style=flat-square\n[pypistats]: https:\u002F\u002Fpypistats.org\u002Fpackages\u002Foutlines\n[pypi-version-badge]: https:\u002F\u002Fimg.shields.io\u002Fpypi\u002Fv\u002Foutlines?style=flat-square&logoColor=white&color=ddb8ca\n[pypi]: https:\u002F\u002Fpypi.org\u002Fproject\u002Foutlines\u002F\n[stars]: https:\u002F\u002Fgithub.com\u002Fdottxt-ai\u002Foutlines\u002Fstargazers\n[stars-badge]: https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002Fdottxt-ai\u002Foutlines?style=flat-square&logo=github&color=BD932F&logoColor=white\n[twitter-badge]: https:\u002F\u002Fimg.shields.io\u002Ftwitter\u002Ffollow\u002Fdottxtai?style=flat-square&logo=x&logoColor=white&color=bd932f\n[twitter]: https:\u002F\u002Fx.com\u002Fdottxtai\n","Outlines 是一个用于生成结构化输出的工具，特别适用于大型语言模型（LLMs）。它支持多种模型如OpenAI、Ollama和vLLM等，并且能够保证生成的内容符合预设的结构要求，例如JSON、XML或自定义模式。其核心功能包括简单易用的集成方式、确保输出有效性的机制以及模型提供商无关性。适合需要从自然语言处理中获得一致性和可预测性的场景，比如客户服务分类、电子商务产品归类、文档分类及会议安排等功能实现。",2,"2026-06-11 03:35:01","high_star"]