openai/chatkit-python

Public

mirrored from https://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
54a4bdec877ccf303d4fbc8633fdc6f8247b7287

Branches

Tags

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

Clone

HTTPS

Download ZIP

mkdocs.yml

95lines · modecode

1site_name: Chatkit Python SDK
2theme:
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
15repo_name: chatkit-python
16repo_url: https://github.com/openai/chatkit-python
17
18plugins:
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
39nav:
40 - Home: 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 - Widgets: concepts/widgets.md
46 - Actions: concepts/actions.md
47 - Entities: concepts/entities.md
48 - Guides:
49 - Respond to a user message: guides/respond-to-user-message.md
50 - Let users browse past threads: guides/browse-past-threads.md
51 - Accept attachments: guides/accept-attachments.md
52 - Make client tool calls: guides/make-client-tool-calls.md
53 - Send client effects: guides/send-client-effects.md
54 - Show progress for long-running tools: guides/show-progress-for-long-running-tools.md
55 - Stream widgets: guides/stream-widgets.md
56 - Handle widget actions: guides/handle-widget-actions.md
57 - Create custom forms: guides/create-custom-forms.md
58 - Handle feedback: guides/handle-feedback.md
59 - Allow @-mentions in user messages: guides/allow-mentions.md
60 - Add annotations in assistant messages: guides/add-annotations.md
61 - API Reference:
62 - Overview: api/chatkit/index.md
63 - Modules:
64 - actions: api/chatkit/actions.md
65 - agents: api/chatkit/agents.md
66 - errors: api/chatkit/errors.md
67 - server: api/chatkit/server.md
68 - store: api/chatkit/store.md
69 - types: api/chatkit/types.md
70 - widgets: api/chatkit/widgets.md
71 - Release process / changelog: release.md
72 - ChatKit JS Docs: https://openai.github.io/chatkit-js/
73markdown_extensions:
74 - pymdownx.superfences:
75 custom_fences:
76 - name: mermaid
77 class: mermaid
78 format: !!python/name:pymdownx.superfences.fence_code_format
79 - admonition
80 - attr_list
81 - md_in_html
82 - pymdownx.details
83 - pymdownx.highlight:
84 anchor_linenums: true
85 line_spans: __span
86 pygments_lang_class: true
87 - pymdownx.inlinehilite
88 - pymdownx.snippets
89 - pymdownx.superfences
90
91extra_css:
92 - stylesheets/extra.css
93
94watch:
95 - chatkit
96