openai/chatkit-python
Publicmirrored fromhttps://github.com/openai/chatkit-pythonAvailable
mkdocs.yml
86lines · modecode
| 1 | site_name: Chatkit Python SDK |
| 2 | theme: |
| 3 | name: material |
| 4 | features: |
| 5 | - content.code.copy |
| 6 | - content.code.select |
| 7 | - navigation.path |
| 8 | - navigation.sections |
| 9 | - content.code.annotate |
| 10 | palette: |
| 11 | primary: black |
| 12 | logo: assets/logo.svg |
| 13 | favicon: images/favicon-platform.svg |
| 14 | |
| 15 | repo_name: chatkit-python |
| 16 | repo_url: https://github.com/openai/chatkit-python |
| 17 | |
| 18 | plugins: |
| 19 | - search |
| 20 | - mkdocstrings: |
| 21 | handlers: |
| 22 | python: |
| 23 | paths: ["."] |
| 24 | selection: |
| 25 | docstring_style: google |
| 26 | options: |
| 27 | signature_crossrefs: true |
| 28 | members_order: source |
| 29 | separate_signature: true |
| 30 | show_signature_annotations: true |
| 31 | heading_level: 3 |
| 32 | inherited_members: false |
| 33 | filters: |
| 34 | - "!^_" |
| 35 | - gen-files: |
| 36 | scripts: |
| 37 | - docs/gen_ref_pages.py |
| 38 | |
| 39 | nav: |
| 40 | - Overview: index.md |
| 41 | - Quick start: quickstart.md |
| 42 | - Concepts: |
| 43 | - Threads and items: concepts/threads.md |
| 44 | - Thread stream events: concepts/thread-stream-events.md |
| 45 | - Tools: concepts/tools.md |
| 46 | - Widgets: concepts/widgets.md |
| 47 | - Actions: concepts/actions.md |
| 48 | - Entities: concepts/entities.md |
| 49 | - Guides: |
| 50 | - Respond to a user message: guides/respond-to-user-message.md |
| 51 | - Let users browse past threads: guides/browse-past-threads.md |
| 52 | - Accept rich user input: guides/accept-rich-user-input.md |
| 53 | - Let users pick tools and models: guides/let-users-pick-tools-and-models.md |
| 54 | - Pass extra app context to your model: guides/pass-extra-app-context-to-your-model.md |
| 55 | - Update the client during a response: guides/update-client-during-response.md |
| 56 | - Build interactive responses with widgets: guides/build-interactive-responses-with-widgets.md |
| 57 | - Add annotations in assistant messages: guides/add-annotations.md |
| 58 | - Stream generated images: guides/stream-generated-images.md |
| 59 | - Keep your app in sync with ChatKit: guides/keep-your-app-in-sync-with-chatkit.md |
| 60 | - Let your app draft and send messages: guides/let-your-app-draft-and-send-messages.md |
| 61 | - Handle feedback: guides/handle-feedback.md |
| 62 | - Prepare your app for production: guides/prepare-your-app-for-production.md |
| 63 | - API Reference: |
| 64 | - Overview: api/chatkit/index.md |
| 65 | - Modules: |
| 66 | - agents: api/chatkit/agents.md |
| 67 | - errors: api/chatkit/errors.md |
| 68 | - server: api/chatkit/server.md |
| 69 | - store: api/chatkit/store.md |
| 70 | - types: api/chatkit/types.md |
| 71 | - widgets: api/chatkit/widgets.md |
| 72 | - icons: api/chatkit/icons.md |
| 73 | - Release process / changelog: release.md |
| 74 | - ChatKit JS Docs: https://openai.github.io/chatkit-js/ |
| 75 | |
| 76 | markdown_extensions: |
| 77 | - fenced_code |
| 78 | - codehilite |
| 79 | - pymdownx.highlight |
| 80 | - pymdownx.superfences |
| 81 | |
| 82 | extra_css: |
| 83 | - stylesheets/extra.css |
| 84 | |
| 85 | watch: |
| 86 | - chatkit |
| 87 | |