diff --git a/docs/module_guides/models/llms/modules.md b/docs/module_guides/models/llms/modules.md index a94cc66010b4e..29def622c9c2f 100644 --- a/docs/module_guides/models/llms/modules.md +++ b/docs/module_guides/models/llms/modules.md @@ -84,6 +84,15 @@ maxdepth: 1 /examples/llm/fireworks.ipynb ``` +## Friendli + +```{toctree} +--- +maxdepth: 1 +--- +/examples/llm/friendli.ipynb +``` + ## Gradient ```{toctree} diff --git a/llama-index-integrations/llms/llama-index-llms-friendli/BUILD b/llama-index-integrations/llms/llama-index-llms-friendli/BUILD index db46e8d6c978c..0896ca890d8bf 100644 --- a/llama-index-integrations/llms/llama-index-llms-friendli/BUILD +++ b/llama-index-integrations/llms/llama-index-llms-friendli/BUILD @@ -1 +1,3 @@ -python_sources() +poetry_requirements( + name="poetry", +) diff --git a/llama-index-integrations/llms/llama-index-llms-friendli/pyproject.toml b/llama-index-integrations/llms/llama-index-llms-friendli/pyproject.toml index 14c238496d369..e4a63932fc23c 100644 --- a/llama-index-integrations/llms/llama-index-llms-friendli/pyproject.toml +++ b/llama-index-integrations/llms/llama-index-llms-friendli/pyproject.toml @@ -7,6 +7,13 @@ check-filenames = true check-hidden = true skip = "*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb" +[tool.llamahub] +contains_example = false +import_path = "llama_index.llms.friendli" + +[tool.llamahub.class_authors] +Friendli = "kooyunmo" + [tool.mypy] disallow_untyped_defs = true exclude = ["_static", "build", "examples", "notebooks", "venv"]