openai/chatkit-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
540aa3f3ec74b6573c84dbf31baaea2d072d5233

Branches

Tags

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

Clone

HTTPS

Download ZIP

mkdocs.yml

80lines · modecode

1site_name: Chatkit Python SDK
2theme:
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
16repo_name: chatkit-python
17repo_url: https://github.com/openai/chatkit-python
18
19plugins:
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
40nav:
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
56 - Release process / changelog: release.md
57 - ChatKit JS Docs: https://openai.github.io/chatkit-js/
58markdown_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
76extra_css:
77 - stylesheets/extra.css
78
79watch:
80 - chatkit
81