-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
125 lines (125 loc) · 7.84 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
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Quickstart:
- Quickstart Setup: quickstart/quickstart_setup.md
- Local Developement Setup: quickstart/developer_setup.md
- How to:
- Configure RAG System: how_to/how_to_configure.md
- Add a New LLM: how_to/how_to_add_new_llm.md
- Add a New Embedding Model: how_to/how_to_add_new_embedding_model.md
- Add a New Vector Store: how_to/how_to_add_new_vector_store.md
- Add a New Datasource: how_to/how_to_add_new_datasource.md
- Evaluation:
- In progress: evaluation/in_progress.md
- Monitoring:
- In progress: monitoring/in_progress.md
- Code Docs:
- Chat: src/chat.md
- Embed: src/embed.md
- Evaluate: src/evaluate.md
- Augmentation:
- Utils: src/augmentation/utils.md
- Chainlit:
- Builders: src/augmentation/chainlit/builders.md
- Service: src/augmentation/chainlit/service.md
- Feedback: src/augmentation/chainlit/feedback.md
- Common:
- Builders:
- Synthesizer_builders: src/common/builders/synthesizer_builders.md
- Retriever_builders: src/common/builders/retriever_builders.md
- Llm_builders: src/common/builders/llm_builders.md
- Postprocessor_builders: src/common/builders/postprocessor_builders.md
- Callback_builders: src/common/builders/callback_builders.md
- Query_engine_builders: src/common/builders/query_engine_builders.md
- Vector_store_builders: src/common/builders/vector_store_builders.md
- Client_builders: src/common/builders/client_builders.md
- Embedding_builders: src/common/builders/embedding_builders.md
- Bootstrap:
- Base_binder: src/common/bootstrap/base_binder.md
- Secrets_configuration: src/common/bootstrap/secrets_configuration.md
- Initializer: src/common/bootstrap/initializer.md
- Configuration:
- Pipeline:
- Evaluation:
- Evaluation_binder: src/common/bootstrap/configuration/pipeline/evaluation/evaluation_binder.md
- Evaluation_binding_keys: src/common/bootstrap/configuration/pipeline/evaluation/evaluation_binding_keys.md
- Evaluation_configuration: src/common/bootstrap/configuration/pipeline/evaluation/evaluation_configuration.md
- Augmentation:
- Augmentation_configuration: src/common/bootstrap/configuration/pipeline/augmentation/augmentation_configuration.md
- Langfuse:
- Langfuse_binder: src/common/bootstrap/configuration/pipeline/augmentation/langfuse/langfuse_binder.md
- Langfuse_configuration: src/common/bootstrap/configuration/pipeline/augmentation/langfuse/langfuse_configuration.md
- Langfuse_binding_keys: src/common/bootstrap/configuration/pipeline/augmentation/langfuse/langfuse_binding_keys.md
- Chainlit:
- Chainlit_binder: src/common/bootstrap/configuration/pipeline/augmentation/chainlit/chainlit_binder.md
- Chainlit_configuration: src/common/bootstrap/configuration/pipeline/augmentation/chainlit/chainlit_configuration.md
- Query_engine:
- Postprocessors:
- Postprocessors_binder: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/postprocessors/postprocessors_binder.md
- Postprocessors_binding_key: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/postprocessors/postprocessors_binding_key.md
- Postprocessors_configuration: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/postprocessors/postprocessors_configuration.md
- Llm_configuration: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/llm_configuration.md
- Query_engine_binder: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/query_engine_binder.md
- Synthesizer:
- Synthesizer_binder: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/synthesizer/synthesizer_binder.md
- Synthesizer_binding_keys: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/synthesizer/synthesizer_binding_keys.md
- Synthesizer_configuration: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/synthesizer/synthesizer_configuration.md
- Retriever:
- Retriever_configuration: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/retriever/retriever_configuration.md
- Retriever_binder: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/retriever/retriever_binder.md
- Retriever_binding_keys: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/retriever/retriever_binding_keys.md
- Query_engine_configuration: src/common/bootstrap/configuration/pipeline/augmentation/query_engine/query_engine_configuration.md
- Embedding:
- Embedding_model:
- Embedding_model_configuration: src/common/bootstrap/configuration/pipeline/embedding/embedding_model/embedding_model_configuration.md
- Splitting_configuration: src/common/bootstrap/configuration/pipeline/embedding/embedding_model/splitting_configuration.md
- Embedding_model_binding_keys: src/common/bootstrap/configuration/pipeline/embedding/embedding_model/embedding_model_binding_keys.md
- Embedding_model_binder: src/common/bootstrap/configuration/pipeline/embedding/embedding_model/embedding_model_binder.md
- Embedding_configuration: src/common/bootstrap/configuration/pipeline/embedding/embedding_configuration.md
- Vector_store:
- Vector_store_binder: src/common/bootstrap/configuration/pipeline/embedding/vector_store/vector_store_binder.md
- Vector_store_configuration: src/common/bootstrap/configuration/pipeline/embedding/vector_store/vector_store_configuration.md
- Datasources:
- Datasources_binder: src/common/bootstrap/configuration/pipeline/embedding/datasources/datasources_binder.md
- Datasources_configuration: src/common/bootstrap/configuration/pipeline/embedding/datasources/datasources_configuration.md
- Datasources_binding_keys: src/common/bootstrap/configuration/pipeline/embedding/datasources/datasources_binding_keys.md
- Pipeline_configuration: src/common/bootstrap/configuration/pipeline/pipeline_configuration.md
- Configuration: src/common/bootstrap/configuration/configuration.md
- Metadata:
- Metadata_configuration: src/common/bootstrap/configuration/metadata/metadata_configuration.md
- Retrievers: src/common/retrievers.md
- Exceptions: src/common/exceptions.md
- Query_engine: src/common/query_engine.md
- Langfuse:
- Builders: src/common/langfuse/builders.md
- Dataset: src/common/langfuse/dataset.md
- Logger: src/common/logger.md
- Embedding:
- Validators:
- Builders: src/embedding/validators/builders.md
- Vector_store_validators: src/embedding/validators/vector_store_validators.md
- Datasources:
- Notion: src/embedding/datasources/notion.md
- Core: src/embedding/datasources/core.md
- Pdf: src/embedding/datasources/pdf.md
- Confluence: src/embedding/datasources/confluence.md
- Embedders:
- Builders: src/embedding/embedders/builders.md
- Base: src/embedding/embedders/base.md
- Default_embedder: src/embedding/embedders/default_embedder.md
- Orchestrators:
- Builders: src/embedding/orchestrators/builders.md
- Base: src/embedding/orchestrators/base.md
- Datasource_orchestrator: src/embedding/orchestrators/datasource_orchestrator.md
- Evaluation:
- Builders: src/evaluation/builders.md
- Evaluators: src/evaluation/evaluators.md
plugins:
- mkdocstrings
- search
repo_url: https://github.com/feld-m/rag_blueprint/
site_name: RAG Systems
theme: readthedocs
watch:
- .