mirror of
https://github.com/kennethreitz/instructor.git
synced 2026-06-05 22:50:18 +00:00
72 lines
2.0 KiB
YAML
72 lines
2.0 KiB
YAML
site_name: OpenAI Function Call Library
|
|
site_description: Enhancing OpenAI function calling with Pydantic
|
|
repo_name: openai_function_call
|
|
repo_url: https://github.com/jxnl/openai_function_call
|
|
site_url: https://openai-function-call.onrender.com/
|
|
theme:
|
|
name: material
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
features:
|
|
- navigation.instant
|
|
- navigation.tabs
|
|
- navigation.tabs.sticky
|
|
- navigation.expand
|
|
- content.code.annotate
|
|
- navigation.footer
|
|
- search.suggest
|
|
- search.highlight
|
|
plugins:
|
|
- social
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
options:
|
|
members_order: alphabetical
|
|
allow_inspection: true
|
|
show_bases: true
|
|
markdown_extensions:
|
|
- pymdownx.critic
|
|
- pymdownx.caret
|
|
- pymdownx.keys
|
|
- pymdownx.mark
|
|
- pymdownx.tilde
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
line_spans: __span
|
|
pygments_lang_class: true
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- pymdownx.superfences
|
|
- attr_list
|
|
- md_in_html
|
|
- admonition
|
|
nav:
|
|
- Introduction:
|
|
- Function Calls: 'index.md'
|
|
- Philosophy: 'philosophy.md'
|
|
- Use Cases:
|
|
- 'Overview': 'examples/index.md'
|
|
- 'Segmented Search': 'examples/search.md'
|
|
- 'One shot Query Planning': 'examples/planning-tasks.md'
|
|
- 'Recursive Schemas': 'examples/recursive.md'
|
|
- 'Exact Citations': 'examples/exact_citations.md'
|
|
- 'Automated Dataframe Extraction': "examples/autodataframe.md"
|
|
- 'Creating multiple file programs': "examples/gpt-engineer.md"
|
|
- API Reference:
|
|
- 'OpenAISchema': 'openai_schema.md'
|
|
- "MultiTask Schema": "multitask.md"
|
|
- "Introduction: Writing Prompts": "writing-prompts.md"
|
|
- "Prompting Templates": "chat-completion.md"
|
|
extra:
|
|
analytics:
|
|
provider: google
|
|
property: G-5CR8QXF5CN
|
|
social:
|
|
- icon: fontawesome/brands/twitter
|
|
link: https://twitter.com/jxnlco
|
|
- icon: fontawesome/brands/github
|
|
link: https://github.com/jxnl
|
|
copyright: Copyright © 2023 Jason Liu
|