Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to chat with rag-agent using playground #155

Open
Arslan-Mehmood1 opened this issue Mar 24, 2025 · 0 comments
Open

Unable to chat with rag-agent using playground #155

Arslan-Mehmood1 opened this issue Mar 24, 2025 · 0 comments

Comments

@Arslan-Mehmood1
Copy link

from agno.agent import Agent
# from agno.models.openai import OpenAIChat
from agno.models.ollama import Ollama
from agno.embedder.ollama import OllamaEmbedder

from agno.knowledge.pdf_url import PDFUrlKnowledgeBase
from agno.vectordb.lancedb import LanceDb, SearchType
from agno.playground import Playground, serve_playground_app
from agno.tools.duckduckgo import DuckDuckGoTools

ollama_llm = Ollama(id="llama3.2:1b-instruct-fp16")
ollama_embedder = OllamaEmbedder(id="nomic-embed-text:latest", dimensions=768)

db_uri = "tmp/lancedb"
# Create a knowledge base from a PDF
knowledge_base = PDFUrlKnowledgeBase(
    urls=["https://phi-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf"],
    # Use LanceDB as the vector database
    vector_db=LanceDb(table_name="recipes", uri=db_uri, search_type=SearchType.vector, embedder=ollama_embedder),
)
# Load the knowledge base: Comment out after first run
# knowledge_base.load(upsert=True)

rag_agent = Agent(
    model=ollama_llm,
    # model=OpenAIChat(id="gpt-4o"),
    agent_id="rag-agent",
    knowledge=knowledge_base, # Add the knowledge base to the agent
    tools=[DuckDuckGoTools()],
    show_tool_calls=True,
    markdown=True,
)

app = Playground(agents=[rag_agent]).get_app()

if __name__ == "__main__":
    serve_playground_app("rag_agent:app", reload=True)

LOGS:

INFO Starting playground on http://localhost:7777                                                                                                                     
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Agent Playground ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃                                                                             ┃
┃                                                                             ┃
┃  Playground URL: https://app.agno.com/playground?endpoint=localhost%3A7777  ┃
┃                                                                             ┃
┃                                                                             ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
INFO:     Will watch for changes in these directories: ['/home/arslan/Data/Learning/REPO/wip/agentic_rag']
INFO:     Uvicorn running on http://localhost:7777 (Press CTRL+C to quit)
INFO:     Started reloader process [31195] using StatReload
INFO:     Started server process [31217]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     127.0.0.1:38480 - "GET /v1/playground/agents HTTP/1.1" 200 OK
INFO:     127.0.0.1:38496 - "GET /v1/playground/status HTTP/1.1" 200 OK
INFO:     127.0.0.1:38480 - "GET /v1/playground/agents/rag-agent/sessions?user_id=allokzzzzzzz HTTP/1.1" 404 Not Found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant