-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
45 lines (40 loc) · 1.23 KB
/
mkdocs.yml
File metadata and controls
45 lines (40 loc) · 1.23 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
site_name: LLaMArch
site_url: https://gpavanb1.github.io/llamarch-docs/
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- python
nav:
- Home: index.md
- Getting Started: start.md
- Pricing: pricing.md
- License: license.md
- Code Documentation:
- Overview: overview.md
- Common Components:
- LLM: common/llm.md
- LLM Embedding: common/llm_embedding.md
- FineTuner: common/fine_tuner.md
- Cache: common/cache.md
- VectorDB: common/vector_db.md
- GraphDB: common/graph_db.md
- Base Agent: common/base_agent.md
- Patterns:
- Agent Swarm: patterns/agent_swarm.md
- Knowledge Graph: patterns/knowledge_graph.md
- Layered Caching: patterns/layered_caching.md
- Memory Cognition: patterns/memory_cognition.md
- Multi-Agent Feedback: patterns/multiagent_feedback.md
- Student-Teacher: patterns/student_teacher.md
plugins:
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
members_order: source
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra_css:
- assets/docs.css