You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LLM chatbot app allows users to deploy machine learning models from [HuggingFace](https://huggingface.co/models) and interact with them through a simple web interface.
2
+
The models can also be interacted with via OpenAI API by other applications running on the same Kubernetes cluster using the in-cluster API address `http://{{ .Release.Name }}.{{ .Release.Namespace }}.svc` - see [here](https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html) for available API endpoints.
3
+
4
+
The target Kubernetes cluster must have a GPU worker node group configured, otherwise the app will remain in an 'Installing' state until a GPU node becomes available for scheduling.
5
+
6
+
On deployment of a new model, the app must first download the model's weights from HuggingFace.
7
+
This can take a significant amount of time depending on model choice and network speeds.
8
+
Download progress can be monitored by inspecting the logs for the LLM API pod(s) via the Kubernetes Dashboard for the target cluster.
9
+
10
+
The app uses [vLLM](https://docs.vllm.ai/en/latest/) as a model serving backend and [Gradio](https://github.com/gradio-app/gradio) + [LangChain](https://python.langchain.com/docs/get_started/introduction) to provide the web interface.
11
+
12
+
The official list of HuggingFace models supported by vLLM can be found [here](https://docs.vllm.ai/en/latest/models/supported_models.html), though some of these may not be compatible with the LangChain prompt format.
13
+
14
+
Release notes for the application can be found at https://github.com/stackhpc/azimuth-llm/releases
The LLM image analysis app allows users to deploy machine learning models from [HuggingFace](https://huggingface.co/models) and interact with them through a simple web interface.
2
+
The models can also be interacted with via OpenAI API by other applications running on the same Kubernetes cluster using the in-cluster API address `http://{{ .Release.Name }}.{{ .Release.Namespace }}.svc` - see [here](https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html) for available API endpoints.
3
+
4
+
The target Kubernetes cluster must have a GPU worker node group configured, otherwise the app will remain in an 'Installing' state until a GPU node becomes available for scheduling.
5
+
6
+
On deployment of a new model, the app must first download the model's weights from HuggingFace.
7
+
This can take a significant amount of time depending on model choice and network speeds.
8
+
Download progress can be monitored by inspecting the logs for the LLM API pod(s) via the Kubernetes Dashboard for the target cluster.
9
+
10
+
The app uses [vLLM](https://docs.vllm.ai/en/latest/) as a model serving backend and [Gradio](https://github.com/gradio-app/gradio) to provide the web interface.
11
+
12
+
The official list of HuggingFace models supported by vLLM can be found [here](https://docs.vllm.ai/en/latest/models/supported_models.html), though some of these may not be compatible with the LangChain prompt format.
13
+
14
+
Release notes for the application can be found at https://github.com/stackhpc/azimuth-llm/releases
The LLM chatbot app allows users to deploy machine learning models from [HuggingFace](https://huggingface.co/models) and interact with them through a simple web interface.
2
+
The models can also be interacted with via OpenAI API by other applications running on the same Kubernetes cluster using the in-cluster API address `http://{{ .Release.Name }}.{{ .Release.Namespace }}.svc` - see [here](https://docs.vllm.ai/en/latest/serving/openai_compatible_server.html) for available API endpoints.
2
3
3
4
The target Kubernetes cluster must have a GPU worker node group configured, otherwise the app will remain in an 'Installing' state until a GPU node becomes available for scheduling.
4
5
@@ -7,5 +8,7 @@ This can take a significant amount of time depending on model choice and network
7
8
Download progress can be monitored by inspecting the logs for the LLM API pod(s) via the Kubernetes Dashboard for the target cluster.
8
9
9
10
The app uses [vLLM](https://docs.vllm.ai/en/latest/) as a model serving backend and [Gradio](https://github.com/gradio-app/gradio) + [LangChain](https://python.langchain.com/docs/get_started/introduction) to provide the web interface.
11
+
10
12
The official list of HuggingFace models supported by vLLM can be found [here](https://docs.vllm.ai/en/latest/models/supported_models.html), though some of these may not be compatible with the LangChain prompt format.
11
-
See [this documentation](https://github.com/stackhpc/azimuth-llm/) for a non-exhaustive list of languange models against which the app has been tested.
13
+
14
+
Release notes for the application can be found at https://github.com/stackhpc/azimuth-llm/releases
0 commit comments