THINKTICA
GRAPH VIEW {{ investigation.status.replace('_', ' ') }}
{{ investigation.research_question }}
ID: {{ investigation.id }} Created: {{ investigation.created_at }} Workspace: {{ investigation.workspace }}
{{ discoveries|length or 0 }}
Discoveries
{{ challenges|length or 0 }}
Challenges
0.00
Avg Confidence
Min Confidence:
{% if discoveries and discoveries|length > 0 %}
{% for discovery in discoveries %}
{{ discovery.statement }}
{{ "%.2f"|format(discovery.confidence) }}
#{{ discovery.id }} {{ discovery.timestamp }}
{% if discovery.evidence %}
{% if discovery.evidence is string %}
{{ discovery.evidence }}
{% elif discovery.evidence is iterable and discovery.evidence|length > 0 %}
Evidence ({{ discovery.evidence|length }})
{% for evidence in discovery.evidence %}
{{ evidence }}
{% endfor %} {% endif %}
{% endif %}
{% endfor %}
{% else %}
No discoveries yet
{% endif %}
{% if challenges and challenges|length > 0 %}
{% for challenge in challenges %}
{{ challenge.description or challenge.statement or 'No description' }}
{{ challenge.status|upper }}
Type: {{ challenge.type or 'unknown' }} Priority: {{ challenge.priority or 'medium' }}
{% endfor %}
{% else %}
No active challenges
{% endif %}
?
Loading hypotheses...