forked from ostis-ai/sc-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
56 lines (52 loc) · 1.76 KB
/
mkdocs.yml
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
site_name: sc-machine
extra_css:
- _assets/main.css
extra_javascript:
- _assets/scg.min.js
- _assets/main.js
nav:
- Home: index.md
- Installation with Docker: docker.md
- Build:
- Build on Linux: build/linux_build.md
- Build on OSX: build/osx_build.md
- CMake flags: build/cmake_flags.md
- Configuration file: build/config.md
- API:
- C++ API:
- C++ Core API: sc-memory/api/cpp/core/api.md
- C++ Extended API:
- System identifier API: sc-memory/api/cpp/extended/helper_api.md
- ScTemplate API: sc-memory/api/cpp/extended/template_api.md
- C++ Agents API: sc-memory/api/cpp/agents.md
- Python API:
- Python Core API: https://github.com/ostis-ai/py-sc-client
- Python Extended API: https://github.com/ostis-ai/py-sc-kpm
- TypeScript API:
- TypeScript Core API: https://github.com/ostis-ai/ts-sc-client
- Sc-element types: scs/sc_element_types.md
- SCs-code: scs/scs.md
- Utils:
- Agents: sc-kpm/kpm.md
- Tools:
- Knowledge Base Builder: sc-tools/sc_builder.md
- Knowledge Base repo file: sc-tools/kb_repo_file.md
- Websocket Server: sc-tools/sc_server.md
- Sc-machine Runner: sc-tools/sc_machine.md
- Meta Programming: sc-tools/cpp_meta.md
- Development:
- Contributing Guide: https://github.com/ostis-ai/sc-machine/blob/main/CONTRIBUTING.md
- Codestyle Guide: dev/codestyle.md
- Dev Container: dev/devcontainer.md
- License: license.md
- Changelog: changelog.md
- Thirdparty: thirdparty.md
theme: material
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.superfences