openai/chatkit-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c9f5f09d50d3fa3029f1576bc8750f0f01286b16

Branches

Tags

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

Clone

HTTPS

Download ZIP

mkdocs.yml

79lines · 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 - ChatKit JS Docs: https://openai.github.io/chatkit-js/
57markdown_extensions:
58 - pymdownx.superfences:
59 custom_fences:
60 - name: mermaid
61 class: mermaid
62 format: !!python/name:pymdownx.superfences.fence_code_format
63 - admonition
64 - attr_list
65 - md_in_html
66 - pymdownx.details
67 - pymdownx.highlight:
68 anchor_linenums: true
69 line_spans: __span
70 pygments_lang_class: true
71 - pymdownx.inlinehilite
72 - pymdownx.snippets
73 - pymdownx.superfences
74
75extra_css:
76 - stylesheets/extra.css
77
78watch:
79 - chatkit