mkdocs.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #
  2. # txtai Material for MkDocs configuration
  3. #
  4. site_name: txtai
  5. site_description: "txtai is an all-in-one open-source embeddings database for semantic search, LLM orchestration and language model workflows"
  6. repo_name: neuml/txtai
  7. repo_url: https://github.com/neuml/txtai
  8. copyright: © NeuML LLC, Apache-2.0 License
  9. theme:
  10. name: material
  11. logo: images/logo.png
  12. favicon: images/logo.png
  13. custom_dir: docs/overrides
  14. icon:
  15. repo: fontawesome/brands/github
  16. palette:
  17. - media: "(prefers-color-scheme: light)"
  18. scheme: default
  19. primary: blue
  20. accent: blue
  21. toggle:
  22. icon: material/toggle-switch-off-outline
  23. name: Switch to dark mode
  24. - media: "(prefers-color-scheme: dark)"
  25. scheme: slate
  26. primary: light blue
  27. accent: light blue
  28. toggle:
  29. icon: material/toggle-switch
  30. name: Switch to light mode
  31. features:
  32. - navigation.indexes
  33. - navigation.instant
  34. plugins:
  35. - search
  36. - mkdocstrings:
  37. handlers:
  38. python:
  39. options:
  40. show_root_full_path: false
  41. show_root_heading: true
  42. show_root_toc_entry: false
  43. - redirects:
  44. redirect_maps:
  45. "pipeline/text/extractor.md": "pipeline/text/rag.md"
  46. "pipeline/text/generator.md": "pipeline/text/llm.md"
  47. "pipeline/text/sequences.md": "pipeline/text/llm.md"
  48. markdown_extensions:
  49. - pymdownx.highlight
  50. - pymdownx.superfences
  51. nav:
  52. - Home: index.md
  53. - Why txtai?: why.md
  54. - Use Cases: usecases.md
  55. - Installation: install.md
  56. - Model Guide: models.md
  57. - Embeddings:
  58. - embeddings/index.md
  59. - Configuration:
  60. - embeddings/configuration/index.md
  61. - ANN: embeddings/configuration/ann.md
  62. - Cloud: embeddings/configuration/cloud.md
  63. - Database: embeddings/configuration/database.md
  64. - General: embeddings/configuration/general.md
  65. - Graph: embeddings/configuration/graph.md
  66. - Scoring: embeddings/configuration/scoring.md
  67. - Vectors: embeddings/configuration/vectors.md
  68. - Index Format: embeddings/format.md
  69. - Index Guide: embeddings/indexing.md
  70. - Methods: embeddings/methods.md
  71. - Query Guide: embeddings/query.md
  72. - Pipeline:
  73. - pipeline/index.md
  74. - Audio:
  75. - Audio Mixer: pipeline/audio/audiomixer.md
  76. - Audio Stream: pipeline/audio/audiostream.md
  77. - Microphone: pipeline/audio/microphone.md
  78. - Text To Audio: pipeline/audio/texttoaudio.md
  79. - Text To Speech: pipeline/audio/texttospeech.md
  80. - Transcription: pipeline/audio/transcription.md
  81. - Data:
  82. - Segmentation: pipeline/data/segmentation.md
  83. - Tabular: pipeline/data/tabular.md
  84. - Textractor: pipeline/data/textractor.md
  85. - Image:
  86. - Caption: pipeline/image/caption.md
  87. - Image Hash: pipeline/image/imagehash.md
  88. - Objects: pipeline/image/objects.md
  89. - Text:
  90. - Entity: pipeline/text/entity.md
  91. - Labels: pipeline/text/labels.md
  92. - LLM: pipeline/text/llm.md
  93. - RAG: pipeline/text/rag.md
  94. - Similarity: pipeline/text/similarity.md
  95. - Summary: pipeline/text/summary.md
  96. - Translation: pipeline/text/translation.md
  97. - Train:
  98. - HF ONNX: pipeline/train/hfonnx.md
  99. - ML ONNX: pipeline/train/mlonnx.md
  100. - Trainer: pipeline/train/trainer.md
  101. - Workflow:
  102. - workflow/index.md
  103. - Schedule: workflow/schedule.md
  104. - Tasks:
  105. - workflow/task/index.md
  106. - Console: workflow/task/console.md
  107. - Export: workflow/task/export.md
  108. - File: workflow/task/file.md
  109. - Image: workflow/task/image.md
  110. - Retrieve: workflow/task/retrieve.md
  111. - Service: workflow/task/service.md
  112. - Storage: workflow/task/storage.md
  113. - Template: workflow/task/template.md
  114. - Url: workflow/task/url.md
  115. - Workflow: workflow/task/workflow.md
  116. - API:
  117. - api/index.md
  118. - Cluster: api/cluster.md
  119. - Configuration: api/configuration.md
  120. - Customization: api/customization.md
  121. - Methods: api/methods.md
  122. - Security: api/security.md
  123. - Cloud: cloud.md
  124. - Examples: examples.md
  125. - FAQ: faq.md
  126. - Powered by txtai: poweredby.md
  127. - Further Reading: further.md