mint.json 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. {
  2. "$schema": "https://mintlify.com/schema.json",
  3. "name": "Embedchain",
  4. "logo": {
  5. "dark": "/logo/dark.svg",
  6. "light": "/logo/light.svg",
  7. "href": "https://github.com/embedchain/embedchain"
  8. },
  9. "favicon": "/favicon.png",
  10. "colors": {
  11. "primary": "#3B2FC9",
  12. "light": "#6673FF",
  13. "dark": "#3B2FC9",
  14. "background": {
  15. "dark": "#0f1117",
  16. "light": "#fff"
  17. }
  18. },
  19. "modeToggle": {
  20. "default": "dark"
  21. },
  22. "openapi": [
  23. "/rest-api.json"
  24. ],
  25. "metadata": {
  26. "og:image": "/images/og.png",
  27. "twitter:site": "@embedchain"
  28. },
  29. "tabs": [
  30. {
  31. "name": "Examples",
  32. "url": "examples"
  33. },
  34. {
  35. "name": "API Reference",
  36. "url": "api-reference"
  37. }
  38. ],
  39. "anchors": [
  40. {
  41. "name": "Talk to founders",
  42. "icon": "calendar",
  43. "url": "https://cal.com/taranjeetio/ec"
  44. },
  45. {
  46. "name": "Join our slack",
  47. "icon": "slack",
  48. "url": "https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw"
  49. },
  50. {
  51. "name": "Join our discord",
  52. "icon": "discord",
  53. "url": "https://discord.gg/CUU9FPhRNt"
  54. }
  55. ],
  56. "topbarLinks": [
  57. {
  58. "name": "GitHub",
  59. "url": "https://github.com/embedchain/embedchain"
  60. }
  61. ],
  62. "topbarCtaButton": {
  63. "name": "Join our slack",
  64. "url": "https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw"
  65. },
  66. "primaryTab": {
  67. "name": "Documentation"
  68. },
  69. "navigation": [
  70. {
  71. "group": "Get Started",
  72. "pages": [
  73. "get-started/introduction",
  74. "get-started/quickstart",
  75. {
  76. "group": "🔗 Integrations",
  77. "pages": [
  78. "integration/langsmith",
  79. "integration/chainlit",
  80. "integration/streamlit-mistral"
  81. ]
  82. },
  83. "get-started/faq"
  84. ]
  85. },
  86. {
  87. "group": "Deployment",
  88. "pages": [
  89. "get-started/deployment",
  90. "deployment/fly_io",
  91. "deployment/modal_com",
  92. "deployment/render_com",
  93. "deployment/streamlit_io",
  94. "deployment/gradio_app",
  95. "deployment/huggingface_spaces",
  96. "deployment/embedchain_ai"
  97. ]
  98. },
  99. {
  100. "group": "Use cases",
  101. "pages": [
  102. "use-cases/chatbots",
  103. "use-cases/question-answering",
  104. "use-cases/semantic-search"
  105. ]
  106. },
  107. {
  108. "group": "Components",
  109. "pages": [
  110. {
  111. "group": "Data sources",
  112. "pages": [
  113. "components/data-sources/overview",
  114. {
  115. "group": "Data types",
  116. "pages": [
  117. "components/data-sources/csv",
  118. "components/data-sources/json",
  119. "components/data-sources/docs-site",
  120. "components/data-sources/docx",
  121. "components/data-sources/mdx",
  122. "components/data-sources/notion",
  123. "components/data-sources/pdf-file",
  124. "components/data-sources/qna",
  125. "components/data-sources/sitemap",
  126. "components/data-sources/text",
  127. "components/data-sources/web-page",
  128. "components/data-sources/openapi",
  129. "components/data-sources/youtube-video",
  130. "components/data-sources/discourse",
  131. "components/data-sources/substack",
  132. "components/data-sources/discord",
  133. "components/data-sources/beehiiv",
  134. "components/data-sources/directory"
  135. ]
  136. },
  137. "components/data-sources/data-type-handling"
  138. ]
  139. },
  140. "components/llms",
  141. "components/vector-databases",
  142. "components/embedding-models"
  143. ]
  144. },
  145. {
  146. "group": "Community",
  147. "pages": [
  148. "community/connect-with-us"
  149. ]
  150. },
  151. {
  152. "group": "Examples",
  153. "pages": [
  154. "examples/chat-with-PDF",
  155. "examples/notebooks-and-replits",
  156. {
  157. "group": "REST API Service",
  158. "pages": [
  159. "examples/rest-api/getting-started",
  160. "examples/rest-api/create",
  161. "examples/rest-api/get-all-apps",
  162. "examples/rest-api/add-data",
  163. "examples/rest-api/get-data",
  164. "examples/rest-api/query",
  165. "examples/rest-api/deploy",
  166. "examples/rest-api/delete",
  167. "examples/rest-api/check-status"
  168. ]
  169. },
  170. "examples/full_stack",
  171. "examples/openai-assistant",
  172. "examples/opensource-assistant"
  173. ]
  174. },
  175. {
  176. "group": "Chatbots",
  177. "pages": [
  178. "examples/discord_bot",
  179. "examples/slack_bot",
  180. "examples/telegram_bot",
  181. "examples/whatsapp_bot",
  182. "examples/poe_bot"
  183. ]
  184. },
  185. {
  186. "group": "Showcase",
  187. "pages": [
  188. "examples/showcase"
  189. ]
  190. },
  191. {
  192. "group": "API Reference",
  193. "pages": [
  194. "api-reference/pipeline/overview",
  195. {
  196. "group": "Pipeline methods",
  197. "pages": [
  198. "api-reference/pipeline/add",
  199. "api-reference/pipeline/query",
  200. "api-reference/pipeline/chat",
  201. "api-reference/pipeline/search",
  202. "api-reference/pipeline/deploy",
  203. "api-reference/pipeline/reset",
  204. "api-reference/pipeline/delete"
  205. ]
  206. },
  207. "api-reference/store/openai-assistant",
  208. "api-reference/store/ai-assistants",
  209. "api-reference/advanced/configuration"
  210. ]
  211. },
  212. {
  213. "group": "Contributing",
  214. "pages": [
  215. "contribution/guidelines",
  216. "contribution/dev",
  217. "contribution/docs",
  218. "contribution/python",
  219. "contribution/javascript"
  220. ]
  221. },
  222. {
  223. "group": "Product",
  224. "pages": [
  225. "product/release-notes"
  226. ]
  227. }
  228. ],
  229. "footerSocials": {
  230. "website": "https://embedchain.ai",
  231. "github": "https://github.com/embedchain/embedchain",
  232. "slack": "https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw",
  233. "discord": "https://discord.gg/6PzXDgEjG5",
  234. "twitter": "https://twitter.com/embedchain",
  235. "linkedin": "https://www.linkedin.com/company/embedchain"
  236. },
  237. "isWhiteLabeled": true,
  238. "analytics": {
  239. "posthog": {
  240. "apiKey": "phc_PHQDA5KwztijnSojsxJ2c1DuJd52QCzJzT2xnSGvjN2",
  241. "apiHost": "https://app.embedchain.ai/ingest"
  242. }
  243. },
  244. "feedback": {
  245. "suggestEdit": true,
  246. "raiseIssue": true,
  247. "thumbsRating": true
  248. },
  249. "search": {
  250. "prompt": "✨ Search embedchain docs..."
  251. },
  252. "api": {
  253. "baseUrl": "http://localhost:8080"
  254. },
  255. "redirects": [
  256. {
  257. "source": "/changelog/command-line",
  258. "destination": "/get-started/introduction"
  259. }
  260. ]
  261. }