openai/chatkit-python

Public

mirrored fromhttps://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dacc133c280b39b9334d06ea73f0f1c199e59927

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

mkdocs.yml

86lines · modepreview

site_name: Chatkit Python SDK
theme:
  name: material
  features:
    - content.code.copy
    - content.code.select
    - navigation.path
    - navigation.sections
    - content.code.annotate
  palette:
    primary: black
  logo: assets/logo.svg
  favicon: images/favicon-platform.svg

repo_name: chatkit-python
repo_url: https://github.com/openai/chatkit-python

plugins:
  - search
  - mkdocstrings:
      handlers:
        python:
          paths: ["."]
          selection:
            docstring_style: google
          options:
            signature_crossrefs: true
            members_order: source
            separate_signature: true
            show_signature_annotations: true
            heading_level: 3
            inherited_members: false
            filters:
              - "!^_"
  - gen-files:
      scripts:
        - docs/gen_ref_pages.py

nav:
  - Overview: index.md
  - Quick start: quickstart.md
  - Concepts:
      - Threads and items: concepts/threads.md
      - Thread stream events: concepts/thread-stream-events.md
      - Tools: concepts/tools.md
      - Widgets: concepts/widgets.md
      - Actions: concepts/actions.md
      - Entities: concepts/entities.md
  - Guides:
      - Respond to a user message: guides/respond-to-user-message.md
      - Let users browse past threads: guides/browse-past-threads.md
      - Accept rich user input: guides/accept-rich-user-input.md
      - Let users pick tools and models: guides/let-users-pick-tools-and-models.md
      - Pass extra app context to your model: guides/pass-extra-app-context-to-your-model.md
      - Update the client during a response: guides/update-client-during-response.md
      - Build interactive responses with widgets: guides/build-interactive-responses-with-widgets.md
      - Add annotations in assistant messages: guides/add-annotations.md
      - Stream generated images: guides/stream-generated-images.md
      - Keep your app in sync with ChatKit: guides/keep-your-app-in-sync-with-chatkit.md
      - Let your app draft and send messages: guides/let-your-app-draft-and-send-messages.md
      - Handle feedback: guides/handle-feedback.md
      - Prepare your app for production: guides/prepare-your-app-for-production.md
  - API Reference:
      - Overview: api/chatkit/index.md
      - Modules:
          - agents: api/chatkit/agents.md
          - errors: api/chatkit/errors.md
          - server: api/chatkit/server.md
          - store: api/chatkit/store.md
          - types: api/chatkit/types.md
          - widgets: api/chatkit/widgets.md
          - icons: api/chatkit/icons.md
  - Release process / changelog: release.md
  - ChatKit JS Docs: https://openai.github.io/chatkit-js/

markdown_extensions:
  - fenced_code
  - codehilite
  - pymdownx.highlight
  - pymdownx.superfences

extra_css:
  - stylesheets/extra.css

watch:
  - chatkit