Setup

Follow the instructions in the Qdrant Setup Guide to install Qdrant locally. Here is a guide to get API keys: Qdrant API Keys.

Example

agent_with_knowledge.py
import os
import typer
from typing import Optional
from rich.prompt import Prompt

from phi.agent import Agent
from phi.knowledge.pdf import PDFUrlKnowledgeBase
from phi.vectordb.qdrant import Qdrant

api_key = os.getenv("QDRANT_API_KEY")
qdrant_url = os.getenv("QDRANT_URL")
collection_name = "thai-recipe-index"

vector_db = Qdrant(
    collection=collection_name,
    url=qdrant_url,
    api_key=api_key,
)

knowledge_base = PDFUrlKnowledgeBase(
    urls=["https://phi-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf"],
    vector_db=vector_db,
)

# Comment out after first run
knowledge_base.load(recreate=True, upsert=True)


def qdrant_agent(user: str = "user"):
    run_id: Optional[str] = None

    agent = Agent(
        run_id=run_id,
        user_id=user,
        knowledge=knowledge_base,
        tool_calls=True,
        use_tools=True,
        show_tool_calls=True,
        debug_mode=True,
    )

    if run_id is None:
        run_id = agent.run_id
        print(f"Started Run: {run_id}\n")
    else:
        print(f"Continuing Run: {run_id}\n")

    while True:
        message = Prompt.ask(f"[bold] :sunglasses: {user} [/bold]")
        if message in ("exit", "bye"):
            break
        agent.print_response(message)


if __name__ == "__main__":
    typer.run(qdrant_agent)

Qdrant Params

ParameterTypeDefaultDescription
collectionstr-The name of the collection to use.
embedderEmbedderOpenAIEmbedderThe embedder to use.
distanceDistancecosineThe distance to use.
locationOptional[str]NoneThe location of the Qdrant database.
urlOptional[str]NoneThe URL of the Qdrant server.
portOptional[int]6333The port number for the Qdrant server.
grpc_portint6334The gRPC port number.
prefer_grpcboolFalseWhether to prefer gRPC over HTTP.
httpsOptional[bool]NoneWhether to use HTTPS for connection.
api_keyOptional[str]NoneThe API key for authentication.
prefixOptional[str]NoneThe prefix to use for the Qdrant client.
timeoutOptional[float]NoneThe timeout for requests in seconds.
hostOptional[str]NoneThe host address of the Qdrant server.
pathOptional[str]NoneThe path to the Qdrant database.