Spaces:
Sleeping
Sleeping
geekyrakshit
commited on
Commit
·
20a903b
1
Parent(s):
b9d8094
add: docs
Browse files- README.md +3 -1
- docs/document_loader/load_text.md +3 -0
- docs/index.md +3 -0
- mkdocs.yml +67 -0
README.md
CHANGED
@@ -1 +1,3 @@
|
|
1 |
-
#
|
|
|
|
|
|
1 |
+
# MedRAG Multi-Modal
|
2 |
+
|
3 |
+
Multi-modal RAG for medical docmain.
|
docs/document_loader/load_text.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
## Load text from PDF files
|
2 |
+
|
3 |
+
::: medrag_multi_modal.document_loader
|
docs/index.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# MedRAG Multi-Modal
|
2 |
+
|
3 |
+
Multi-modal RAG for medical docmain.
|
mkdocs.yml
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# mkdocs.yml
|
2 |
+
site_name: Medrag Multi Modal
|
3 |
+
|
4 |
+
theme:
|
5 |
+
name: material
|
6 |
+
palette:
|
7 |
+
# Palette toggle for light mode
|
8 |
+
- scheme: default
|
9 |
+
toggle:
|
10 |
+
icon: material/brightness-7
|
11 |
+
name: Switch to dark mode
|
12 |
+
# Palette toggle for dark mode
|
13 |
+
- scheme: slate
|
14 |
+
toggle:
|
15 |
+
icon: material/brightness-4
|
16 |
+
name: Switch to light mode
|
17 |
+
logo: assets/logomark.svg
|
18 |
+
favicon: assets/logomark.svg
|
19 |
+
features:
|
20 |
+
- content.code.annotate
|
21 |
+
- content.code.copy
|
22 |
+
- content.code.select
|
23 |
+
- content.tabs.link
|
24 |
+
- content.tooltips
|
25 |
+
- navigation.tracking
|
26 |
+
|
27 |
+
plugins:
|
28 |
+
- mkdocstrings
|
29 |
+
- search
|
30 |
+
- minify
|
31 |
+
- glightbox
|
32 |
+
- mkdocs-jupyter:
|
33 |
+
include_source: True
|
34 |
+
|
35 |
+
|
36 |
+
markdown_extensions:
|
37 |
+
- attr_list
|
38 |
+
- pymdownx.emoji:
|
39 |
+
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
40 |
+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
41 |
+
- pymdownx.arithmatex:
|
42 |
+
generic: true
|
43 |
+
- pymdownx.highlight:
|
44 |
+
anchor_linenums: true
|
45 |
+
line_spans: __span
|
46 |
+
pygments_lang_class: true
|
47 |
+
- pymdownx.tabbed:
|
48 |
+
alternate_style: true
|
49 |
+
- pymdownx.details
|
50 |
+
- pymdownx.inlinehilite
|
51 |
+
- pymdownx.snippets
|
52 |
+
- pymdownx.superfences
|
53 |
+
- admonition
|
54 |
+
- attr_list
|
55 |
+
- md_in_html
|
56 |
+
|
57 |
+
extra_javascript:
|
58 |
+
- javascripts/mathjax.js
|
59 |
+
- https://polyfill.io/v3/polyfill.min.js?features=es6
|
60 |
+
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|
61 |
+
|
62 |
+
nav:
|
63 |
+
- Home: 'index.md'
|
64 |
+
- Document Loader:
|
65 |
+
- Text Loader: 'document_loader/load_text.md'
|
66 |
+
|
67 |
+
repo_url: https://github.com/soumik12345/medrag-multi-modal
|