-
Notifications
You must be signed in to change notification settings - Fork 445
/
mkdocs.yml
58 lines (54 loc) · 1.56 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
site_name: ImaginAIry
theme:
name: material
features:
- content.tabs.link
- content.code.copy
palette:
primary: cyan
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- mkdocs-click
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.superfences
- pymdownx.tabbed:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
alternate_style: true
- attr_list
- md_in_html
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
nav:
- Overview: index.md
- API Docs:
- CLI:
- Create Image: docs/CLI/imagine.md
- Create Video: docs/CLI/videogen.md
- Edit Image: docs/CLI/edit.md
- Upscale Image: docs/CLI/upscale.md
- Colorize Image: docs/CLI/colorize.md
- Describe Image: docs/CLI/describe.md
- Python:
- imagine(): docs/Python/imagine.md
- imagine_image_files(): docs/Python/imagine-image-files.md
- generate_video(): docs/Python/generate-video.md
- colorize_img(): docs/Python/colorize-img.md
- upscale(): docs/Python/upscale.md
- ImaginePrompt: docs/Python/ImaginePrompt.md
- ControlInput: docs/Python/ControlInput.md
- LazyLoadingImage: docs/Python/LazyLoadingImage.md
- WeightedPrompt: docs/Python/WeightedPrompt.md
- Changelog: changelog.md