Marketplace
Browse and discover AI-powered agents for your tasks.
{% if user.is_authenticated %}
Welcome {{ user.username }}! Your current balance is {{ user_balance }} AED.
Manage your wallet or return to homepage.
{% else %}
Log in to use AI agents.
{% endif %}
{% if categories %}
{% endif %}
{% if agents %}
{% for agent in agents %}
{% if agent.icon %}{{ agent.icon }}{% endif %} {{ agent.name }}
{{ agent.description }}
{{ agent.category|title }}
{{ agent.agent_type|title }}
{{ agent.price }} AED
{% if agent.rating %}
⭐ {{ agent.rating }} ({{ agent.review_count }} reviews)
{% endif %}
{% if user.is_authenticated %}
Use Agent
{% else %}
Login to Use
{% endif %}
{% endfor %}
{% else %}
🤖 No Agents Available
No agents are currently available{% if selected_category %} in the {{ selected_category }} category{% endif %}. Check back later!
{% endif %}