Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] LlamaIndex Integration #1024

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"sphinx.ext.autodoc",
"sphinx.ext.todo",
"sphinx.ext.extlinks",
"sphinx.ext.intersphinx",
"sphinx.ext.intersphinx",
"sphinx.ext.graphviz",
"nbsphinx",
"sphinx_code_tabs",
Expand Down Expand Up @@ -80,12 +80,12 @@
html_use_index = False

# html_css_files = [
# 'pied-piper-admonition.css',
# 'pied-piper-admonition.css',
# ]

html_theme_options = {
"light_logo": "logo-light-mode.png",
"dark_logo": "logo-dark-mode.png",
"dark_logo": "logo-dark-mode.png",
}


Expand Down Expand Up @@ -165,7 +165,10 @@
# -- Options for intersphinx extension ---------------------------------------

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {"https://docs.python.org/": None}
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
}

# -- Options for todo extension ----------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docs/source/user_guide/large_language_model/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ ADS is designed to work with LangChain, enabling developers to incorporate vario
training_llm
langchain_models
autogen_integration
llamaindex_integration
deploy_langchain_application
retrieval
guardrails
Loading
Loading