What is the LlamaHub?

LlamaHub is a registry of hundreds of integrations, agents and tools that you can use within LlamaIndex.

LlamaHub

We will be using various integrations in this course, so let’s first look at the LlamaHub and how it can help us.

Let’s see how to find and install the dependencies for the components we need.

Installation

LlamaIndex installation instructions are available as a well structured overview on LlamaHub. This might be a bit overwhelming at first, but most of the installation commands generally follow an easy to remember format:

pip install llama-index-{component-type}-{framework-name}

Let’s try install the depencies for an LLM component using the Hugging Face inference API integration.

pip install llama-index-llms-huggingface-api

Usage

Once installed, we can see the usage patterns. Underneath, we can see an example of the usage of the Hugging Face inference API for an LLM component.

from llama_index.llms.huggingface_api import HuggingFaceInferenceAPI

llm = HuggingFaceInferenceAPI(
    model_name="meta-llama/Meta-Llama-3-8B-Instruct",
    temperature=0.7,
    max_tokens=100,
    token="hf_xxx",
)

llm.complete("Hello, how are you?")
# I am good, how can I help you today?

Wonderful, we now know how to find, install and use the integrations for the components we need. Let’s dive deeper into the components and see how we can use them to build our own agents.

< > Update on GitHub