openai/chatkit-python

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.1.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

mkdocs.yml

80lines · modeblame

f688d870victor-openai8 months ago1site_name: Chatkit Python SDK
2theme:
3name: material
4features:
5- content.code.copy
6- content.code.select
7- navigation.sections
8- navigation.path
9- navigation.expand
10- content.code.annotate
11palette:
12primary: black
13logo: assets/logo.svg
14favicon: images/favicon-platform.svg
15
5ab73e2avictor-openai8 months ago16repo_name: chatkit-python
17repo_url: https://github.com/openai/chatkit-python
f688d870victor-openai8 months ago18
19plugins:
20- search
21- mkdocstrings:
22handlers:
23python:
24paths: ["."]
25selection:
26docstring_style: google
27options:
28signature_crossrefs: true
29members_order: source
30separate_signature: true
31show_signature_annotations: true
32heading_level: 3
33inherited_members: false
34filters:
35- "!^_"
36- gen-files:
37scripts:
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
7327b5dbJiwon Kim7 months ago56- Release process / changelog: release.md
11112b87victor-openai8 months ago57- ChatKit JS Docs: https://openai.github.io/chatkit-js/
f688d870victor-openai8 months ago58markdown_extensions:
59- pymdownx.superfences:
60custom_fences:
61- name: mermaid
62class: mermaid
63format: !!python/name:pymdownx.superfences.fence_code_format
64- admonition
65- attr_list
66- md_in_html
67- pymdownx.details
68- pymdownx.highlight:
69anchor_linenums: true
70line_spans: __span
71pygments_lang_class: true
72- pymdownx.inlinehilite
73- pymdownx.snippets
74- pymdownx.superfences
75
76extra_css:
77- stylesheets/extra.css
78
79watch:
7327b5dbJiwon Kim7 months ago80- chatkit