{% include 'theme/' ~ theme_dir ~ '/logo.html' %}
{{ app_name }}
{{ sub_text }}
User Listing
Report
Logout
Conversations with {{ user.name }}
{% for conversation in user.conversations %}
Question ({{ conversation.question_size }} at ${{ conversation.question_cost|float|round(4) }}):
{{ conversation.question }}
Timestamp: {{ conversation.date_timestamp }}
Answer ({{ conversation.answer_size }} at ${{ conversation.answer_cost|float|round(4) }}):
{{ conversation.answer }}
Total tokens: {{ conversation.total_size }}/Total cost ${{ conversation.total_cost|float|round(4) }}:
{% endfor %}
Back to Users