{% extends "base.html" %} {% block title %}Dashboard - Llamaball{% endblock %} {% block content %}

Welcome to Llamaball

Accessible, ethical, and actually useful document chat and RAG system powered by Ollama

{{ stats.documents }}
Documents
{{ stats.embeddings }}
Embeddings
{{ stats.files }}
Files
{{ (stats.database_size / 1024 / 1024) | round(1) }}MB
Database

Quick Actions

Start Chatting

Ask questions about your documents using natural language.

Open Chat
Upload Documents

Add new documents to your knowledge base for analysis.

Upload Files
View Statistics

Explore detailed analytics about your document collection.

View Stats
{% if recent_files %}

Recent Files

{% for file in recent_files %} {% endfor %}
Filename Modified Type
{{ file.filename }} {% set ext = file.filename.split('.')[-1].lower() %} {{ ext }}
{% endif %} {% if models %}

Available Models

{% for model in models[:6] %}
{{ model.name }}

Size: {{ (model.size / 1024 / 1024 / 1024) | round(1) }}GB

{% endfor %}
{% if models|length > 6 %}
... and {{ models|length - 6 }} more models
{% endif %}
{% endif %}

Supported File Types

Llamaball supports over 100 file types across multiple categories:

Text Documents
.txt .md .rst .tex
Source Code
.py .js .html .css
Documents
.pdf .docx .xlsx .csv
Archives
.zip .tar .7z .rar
Total: {{ supported_extensions|length }} supported file types

System Status

Database
Connected
Ollama
{{ models|length }} models available
Web Server
Running
{% endblock %} {% block extra_js %} {% endblock %}