-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmkdocs.yml
92 lines (83 loc) · 2.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
site_name: llama-cpp-agent
repo_url: https://github.com/Maximilian-Winter/llama-cpp-agent
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: source
group_by_category: false
signature_crossrefs: true
show_signature: true
docstring_section_style: list
show_root_heading: true
heading_level: 3
preload_modules:
- typing
- typing_extensions
- ctypes
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
watch:
- src/llama_cpp_agent
- ReadMe.md
nav:
- "Welcome": "index.md"
- "Getting Started": "get-started.md"
- "Guides":
"Simple Chat": "simple-chat-example.md"
"Function Calling Agent": "function-calling-agent.md"
"Parallel Function Calling Agent": "parallel_function_calling.md"
"Structured Output Agent": "structured-output-example.md"
"RAG- Retrieval Augmented Generation": "rag.md"
"llama-index tools example": "llama_index_tool_use.md"
"Sequential Chain Example": "sequential_chain.md"
"Map Chain Example": "map_chain.md"
"Manual Function Calling Example": "manual-function-calling.md"
"Manual Function Calling Example With Python Function": "manual_function_calling_with_python_function.md"
"Knowledge Graph Generation": "knowledge-graph-example.md"
- "API Reference":
"Provider": "provider-api-reference.md"
"Agents": "agents-api-reference.md"
"Chat History": "chat_history-api-reference.md"
"Function Calling": "function-calling-api-reference.md"
"Agent Chains": "agent_chains.md"
"Output Parsing": "output-parser-api-reference.md"
"Grammar Generator": "grammar-api-reference.md"
markdown_extensions:
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shorthand: true
user: abetlen
repo: llama-cpp-python
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
- tables