-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
102 lines (95 loc) · 3.21 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
93
94
95
96
97
98
99
100
101
102
site_name: BlendSQL
site_description: Unified dialect for orchestrating SQLite logic and LLM reasoning.
repo_name: parkervg/blendsql
repo_url: https://github.com/parkervg/blendsql
theme:
name: material
custom_dir: docs/overrides
palette:
- scheme: default
primary: white
logo: img/blender.png
favicon: img/blender.png
features:
- content.code.copy
- header.autohide
- navigation.expand
- navigation.tabs
- navigation.sections
markdown_extensions:
- admonition
- def_list
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
options:
show_submodules: true
show_source: true
docstring_style: google
docstring_section_style: table
show_docstring_examples: true
show_symbol_type_heading: true
show_if_no_docstring: False
members: False
- search
- section-index
- mkdocs-jupyter:
include_source: True
execute: False
extra_css:
- stylesheets/extra.css
nav:
- Home:
- Home: index.md
- Examples from QA Datasets:
- HybridQA: examples/hybridqa.md
- OTT-QA: examples/ottqa.md
- FEVEROUS: examples/feverous.md
- FAQ: faq.md
- Getting Started:
- Quickstart: quickstart.md
- Some Cool Things by Example: by-example.md
- Examples:
- BlendSQL by Example: reference/examples/blendsql-by-example.ipynb
- Custom VQA Ingredient with LLaVA: reference/examples/vqa-ingredient.ipynb
- Teaching BlendSQL via In-Context Learning: reference/examples/teaching-blendsql-via-in-context-learning.ipynb
- Documentation:
- Execute a BlendSQL Query: reference/execute-blendsql.md
- Blend CLI: reference/blend-cli.md
- Ingredients:
- reference/ingredients/ingredients.md
- Creating Custom Ingredients: reference/ingredients/creating-custom-ingredients.md
- Built-in:
- LLMMap: reference/ingredients/LLMMap.md
- LLMQA: reference/ingredients/LLMQA.md
- LLMJoin: reference/ingredients/LLMJoin.md
- RAGQA: reference/ingredients/RAGQA.md
- Language Models:
- reference/models/models.md
- OpenAI: reference/models/openai.md
- Anthropic: reference/models/anthropic.md
- Transformers: reference/models/transformers.md
- Ollama: reference/models/ollama.md
- Azure Phi: reference/models/azurephi.md
- Databases:
- reference/databases/databases.md
- DuckDB: reference/databases/duckdb.md
- Pandas (aka DuckDB in a trench coat): reference/databases/pandas.md
- SQLite: reference/databases/sqlite.md
- PostgreSQL: reference/databases/postgresql.md
- Smoothie:
- reference/smoothie.md
- Programs:
- reference/programs.md