forked from openai/chatkit-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
100 lines (95 loc) · 3.34 KB
/
mkdocs.yml
File metadata and controls
100 lines (95 loc) · 3.34 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
site_name: Chatkit Python SDK
theme:
name: material
features:
- content.code.copy
- content.code.select
- navigation.path
- 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:
- Home: index.md
- Concepts:
- Threads: concepts/threads.md
- Thread items: concepts/thread-items.md
- Thread stream events: concepts/thread-stream-events.md
- Widgets: concepts/widgets.md
- Actions: concepts/actions.md
- Entities: concepts/entities.md
- Guides:
- Serve ChatKit from your backend: guides/serve-chatkit.md
- Persist ChatKit threads and messages: guides/persist-chatkit-data.md
- Compose model input: guides/compose-model-input.md
- Run inference: guides/run-inference.md
- Stream responses back to your user: guides/stream-thread-events.md
- Add features:
- Save thread titles: guides/add-features/save-thread-titles.md
- Accept attachments: guides/add-features/accept-attachments.md
- Make client tool calls: guides/add-features/make-client-tool-calls.md
- Send client effects: guides/add-features/send-client-effects.md
- Show progress for long-running tools: guides/add-features/show-progress-for-long-running-tools.md
- Stream widgets: guides/add-features/stream-widgets.md
- Handle widget actions: guides/add-features/handle-widget-actions.md
- Create custom forms: guides/add-features/create-custom-forms.md
- Handle feedback: guides/add-features/handle-feedback.md
- Allow @-mentions in user messages: guides/add-features/allow-mentions.md
- Add annotations in assistant messages: guides/add-features/add-annotations.md
- Disable new messages for a thread: guides/add-features/disable-new-messages.md
- API Reference:
- Overview: api/chatkit/index.md
- Modules:
- actions: api/chatkit/actions.md
- 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
- Release process / changelog: release.md
- ChatKit JS Docs: https://openai.github.io/chatkit-js/
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- stylesheets/extra.css
watch:
- chatkit