From bdf36659a632109f7800a963fc7710200c59b3bc Mon Sep 17 00:00:00 2001 From: Merve Noyan Date: Tue, 22 Aug 2023 23:44:53 +0300 Subject: [PATCH] Update non_core_models.md --- docs/source/basic_tutorials/non_core_models.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/basic_tutorials/non_core_models.md b/docs/source/basic_tutorials/non_core_models.md index 5980efae..e10d6718 100644 --- a/docs/source/basic_tutorials/non_core_models.md +++ b/docs/source/basic_tutorials/non_core_models.md @@ -1,6 +1,6 @@ # Non-core Model Serving -TGI supports various LLM architectures (see full list [here](https://github.com/huggingface/text-generation-inference#optimized-architectures)). If you wish to serve a model that is not one of the supported models, TGI will fallback to transformers implementation of that model. They can be loaded by: +TGI supports various LLM architectures (see full list [here](./supported_models)). If you wish to serve a model that is not one of the supported models, TGI will fallback to transformers implementation of that model. They can be loaded by: ```python from transformers import AutoModelForCausalLM, AutoModelForSeq2SeqLM