openai/chatkit-python
Publicmirrored from https://github.com/openai/chatkit-pythonAvailable
mkdocs.yml
80lines · modeblame
f688d870victor-openai8 months ago | 1 | site_name: Chatkit Python SDK |
| 2 | theme: | |
| 3 | name: material | |
| 4 | features: | |
| 5 | - content.code.copy | |
| 6 | - content.code.select | |
| 7 | - navigation.sections | |
| 8 | - navigation.path | |
| 9 | - navigation.expand | |
| 10 | - content.code.annotate | |
| 11 | palette: | |
| 12 | primary: black | |
| 13 | logo: assets/logo.svg | |
| 14 | favicon: images/favicon-platform.svg | |
| 15 | | |
5ab73e2avictor-openai8 months ago | 16 | repo_name: chatkit-python |
| 17 | repo_url: https://github.com/openai/chatkit-python | |
f688d870victor-openai8 months ago | 18 | |
| 19 | plugins: | |
| 20 | - search | |
| 21 | - mkdocstrings: | |
| 22 | handlers: | |
| 23 | python: | |
| 24 | paths: ["."] | |
| 25 | selection: | |
| 26 | docstring_style: google | |
| 27 | options: | |
| 28 | signature_crossrefs: true | |
| 29 | members_order: source | |
| 30 | separate_signature: true | |
| 31 | show_signature_annotations: true | |
| 32 | heading_level: 3 | |
| 33 | inherited_members: false | |
| 34 | filters: | |
| 35 | - "!^_" | |
| 36 | - gen-files: | |
| 37 | scripts: | |
| 38 | - docs/gen_ref_pages.py | |
| 39 | | |
| 40 | nav: | |
| 41 | - Home: index.md | |
| 42 | - Guides: | |
| 43 | - Server Integration: server.md | |
| 44 | - Actions: actions.md | |
| 45 | - Widgets: widgets.md | |
| 46 | - API Reference: | |
| 47 | - Overview: api/chatkit/index.md | |
| 48 | - Modules: | |
| 49 | - actions: api/chatkit/actions.md | |
| 50 | - agents: api/chatkit/agents.md | |
| 51 | - errors: api/chatkit/errors.md | |
| 52 | - server: api/chatkit/server.md | |
| 53 | - store: api/chatkit/store.md | |
| 54 | - types: api/chatkit/types.md | |
| 55 | - widgets: api/chatkit/widgets.md | |
7327b5dbJiwon Kim7 months ago | 56 | - Release process / changelog: release.md |
11112b87victor-openai8 months ago | 57 | - ChatKit JS Docs: https://openai.github.io/chatkit-js/ |
f688d870victor-openai8 months ago | 58 | markdown_extensions: |
| 59 | - pymdownx.superfences: | |
| 60 | custom_fences: | |
| 61 | - name: mermaid | |
| 62 | class: mermaid | |
| 63 | format: !!python/name:pymdownx.superfences.fence_code_format | |
| 64 | - admonition | |
| 65 | - attr_list | |
| 66 | - md_in_html | |
| 67 | - pymdownx.details | |
| 68 | - pymdownx.highlight: | |
| 69 | anchor_linenums: true | |
| 70 | line_spans: __span | |
| 71 | pygments_lang_class: true | |
| 72 | - pymdownx.inlinehilite | |
| 73 | - pymdownx.snippets | |
| 74 | - pymdownx.superfences | |
| 75 | | |
| 76 | extra_css: | |
| 77 | - stylesheets/extra.css | |
| 78 | | |
| 79 | watch: | |
7327b5dbJiwon Kim7 months ago | 80 | - chatkit |