-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
144 lines (138 loc) · 4.79 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
site_name: OpenAI .NET Documentation
nav:
- Overview: index.md
# START EXAMPLES #
- Examples:
- Chat:
- FunctionCallingStreaming: samples/Chat.FunctionCallingStreaming.md
- SimpleChat: samples/Chat.SimpleChat.md
- StructuredOutputsClasses: samples/Chat.StructuredOutputsClasses.md
- SimpleChatStreaming: samples/Chat.SimpleChatStreaming.md
- ChatWithVision: samples/Chat.ChatWithVision.md
- FunctionCalling: samples/Chat.FunctionCalling.md
- FunctionCallingService: samples/Chat.FunctionCallingService.md
- StructuredOutputs: samples/Chat.StructuredOutputs.md
- Assistants:
- AssistantsWithVision: samples/Assistants.AssistantsWithVision.md
- FunctionCalling: samples/Assistants.FunctionCalling.md
- AllToolsService: samples/Assistants.AllToolsService.md
- ListFiles: samples/Assistants.ListFiles.md
- ListAssistantsWithPagination: samples/Assistants.ListAssistantsWithPagination.md
- RetrievalAugmentedGeneration: samples/Assistants.RetrievalAugmentedGeneration.md
- AllTools: samples/Assistants.AllTools.md
- FunctionCallingStreaming: samples/Assistants.FunctionCallingStreaming.md
- Images:
- SimpleImageEdit: samples/Images.SimpleImageEdit.md
- SimpleImageVariation: samples/Images.SimpleImageVariation.md
- SimpleImageGeneration: samples/Images.SimpleImageGeneration.md
- Embeddings:
- MultipleEmbeddings: samples/Embeddings.MultipleEmbeddings.md
- SimpleEmbedding: samples/Embeddings.SimpleEmbedding.md
- EmbeddingWithOptions: samples/Embeddings.EmbeddingWithOptions.md
- Audio:
- SimpleTranscription: samples/Audio.SimpleTranscription.md
- SimpleTranslation: samples/Audio.SimpleTranslation.md
- VerboseTranscription: samples/Audio.VerboseTranscription.md
- SimpleTextToSpeech: samples/Audio.SimpleTextToSpeech.md
- Combination:
- CuriousCreatureCreator: samples/Combination.CuriousCreatureCreator.md
- AlpacaArtAssessor: samples/Combination.AlpacaArtAssessor.md
# END EXAMPLES #
# - Quick Start: QuickStart.md
# - Architecture: Architecture.md
# - FAQ: FAQ.md
# - Contributing Guide: ContributingGuide.md
# - Tutorials:
# - Configure the native library loading: Tutorials/NativeLibraryConfig.md
# - Use executors: Tutorials/Executors.md
# - Use ChatSession: Tutorials/ChatSession.md
# - Understand LLamaContext: Tutorials/UnderstandLLamaContext.md
# - Get embeddings: Tutorials/GetEmbeddings.md
# - Quantize the model: Tutorials/Quantization.md
#
# - Advanced Tutorials:
# - Customize the native library loading: AdvancedTutorials/CustomizeNativeLibraryLoading.md
#
# - Integrations:
# - semantic-kernel integration: Integrations/semantic-kernel.md
# - kernel-memory integration: Integrations/kernel-memory.md
# - BotSharp integration: Integrations/BotSharp.md
# - Langchain integration: Integrations/Langchain.md
#
# - Examples:
# - Bacthed executor - multi-output to one input: Examples/BatchedExecutorFork.md
# - Batched executor - basic guidance: Examples/BatchedExecutorGuidance.md
# - Batched executor - rewinding to an earlier state: Examples/BatchedExecutorRewind.md
theme:
name: material
static_templates:
- 404.html
language: 'en'
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: red
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
include_search_page: false
search_index_only: true
favicon: 'media/icon128.png'
icon:
logo: 'material/file-document'
features:
- content.action.edit
- navigation.instant
font:
text: 'Fira Sans'
code: 'Fira Mono'
extra:
version:
provider: mike
extra_css:
- 'css/extra.css?v=14'
markdown_extensions:
- admonition
- def_list
- footnotes
- meta
- toc:
permalink: ""
slugify: !!python/name:pymdownx.slugs.uslugify
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets:
check_paths: true
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true