forked from instructor-ai/instructor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
72 lines (72 loc) · 2.05 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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:
- OpenAISchema: 'index.md'
- MultiTask: "multitask.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': 'api_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