-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
58 lines (58 loc) · 1.55 KB
/
mkdocs.yml
File metadata and controls
58 lines (58 loc) · 1.55 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
site_name: codex-app-server-sdk
site_description: Async Python client for codex app-server over stdio and websocket.
site_url: https://emsi.github.io/codex-app-server-sdk/
docs_dir: docs
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
plugins:
- search
- mkdocstrings:
handlers:
python:
paths:
- src
options:
show_root_heading: true
show_root_full_path: false
show_source: false
inherited_members: true
markdown_extensions:
- admonition
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- tables
- def_list
- attr_list
nav:
- Home:
- Overview: index.md
- Getting started: getting-started.md
- Recipes:
- Overview: recipes/index.md
- Conversation APIs: conversation.md
- Transports: transports.md
- Approvals and sandbox: approvals-and-sandbox.md
- Timeouts, continuation, cancel: timeouts-continuation-cancel.md
- Threads and configuration: threads-and-config.md
- Examples: examples.md
- Protocol mapping: protocol-mapping.md
- Behavior guarantees: behavior-guarantees.md
- API:
- Overview: api/index.md
- Package exports: api/package.md
- client: api/client.md
- transport: api/transport.md
- models: api/models.md
- errors: api/errors.md
- protocol: api/protocol.md