mirror of
https://github.com/kennethreitz/instructor.git
synced 2026-06-05 22:50:18 +00:00
8604848702
* add social * update social * example
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
site_name: OpenAI Function Call
|
|
theme:
|
|
name: material
|
|
icon:
|
|
repo: fontawesome/brands/github
|
|
features:
|
|
- navigation.instant
|
|
plugins:
|
|
- social
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
options:
|
|
members_order: alphabetical
|
|
allow_inspection: true
|
|
show_bases: true
|
|
repo_url: https://github.com/jxnl/openai_function_call
|
|
site_url: https://openai-function-call.vercel.app
|
|
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:
|
|
- Home: 'index.md'
|
|
- API Reference:
|
|
- 'OpenAISchema': 'openai_schema.md'
|
|
- "Helper: MultiTask": "multitask.md"
|
|
- "Example: Pipeline API": "pipeline-example.md"
|
|
- "Docs": "chat-completion.md"
|
|
- Examples:
|
|
- 'Segmented Search': 'examples/search.md' |