-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
71 lines (62 loc) · 2.19 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
# Serve the website: docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
# Build the website: docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build
site_name: Parakeet
site_url: https://parakeet-nest.github.io/parakeet/
site_author: Philippe Charrière (@k33g)
site_description: >-
🦜🪺 Parakeet is a GoLang library, made to simplify the development of small generative AI applications with Ollama 🦙.
# Repository
repo_name: parakeet-nest/parakeet
repo_url: https://github.com/parakeet-nest/parakeet
# Copyright
copyright: Copyright © 2024 - 2025 Philippe Charrière
nav:
- 🏠 Home: index.md
- Generate completion: generate-completion.md
- Chat completion: chat-completion.md
- How to set the Options: set-options.md
- Embeddings: embeddings.md
- Chunkers & Splitters: chunkers-and-splitters.md
- 📝🔎 Contextual Retrieval: contextual-retrieval.md
- Parsing Markdown: parsing-markdown.md
- Function Calling (before tools support): function-calling-before-tools-support.md
- Function Calling (without tools support): function-calling-without-tools-support.md
- Function Calling with Tools: tools.md
- WASM Plugins: wasm-plugins.md
- Protected endpoint: protected-endpoint.md
- 🛠️ Other Parakeet Helpers: other-helpers.md
- 🔨 Prompt Helpers: prompt-helpers.md
- 📺 UI (Input/Print) Helpers: ui-helpers.md
- 📺 CLI Helpers: cli-helpers.md
- Verbose mode: verbose-mode.md
- OpenAI API support: openaiapi-support.md
- 👮♂️ Flock agents: flock-agents.md
- 🧪 Parakeet Examples & Recipes: parakeet-examples.md
- 🚀 Parakeet Demos: parakeet-demos.md
- 📝 Parakeet Blog Posts: parakeet-blog.md
theme:
name: material
palette:
primary: deep purple
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.highlight:
use_pygments: true
auto_title: false
linenums: true
anchor_linenums: true
- pymdownx.superfences
#theme:
# name: readthedocs
# highlightjs: true
# hljs_languages:
# - yaml
# - rust
# - golang
# - bash
# - javascript