{% extends "base.html" %} {% block title %}Settings — GraQle Studio{% endblock %} {% block nav_settings %}active{% endblock %} {% block content %}

GraQle Cloud

Cloud features are optional. Your graph, your machine, your data.

Connected to GraQle Cloud
Email
Plan
Cloud URL
Graph BackupSync your graph to the cloud
Team SharingShare graphs with your team
Usage AnalyticsTrack queries, costs, and ROI

Or run graq login from the terminal

Get an API key at graqle.com/account

Graph Backend

{% if config %}
Connector {{ config.graph.connector if config.graph else 'networkx' }}
Activation Strategy {{ config.activation.strategy if config.activation else 'chunk' }}
Max Nodes {{ config.activation.max_nodes if config.activation else 50 }}
{% else %}

No configuration loaded

{% endif %}

Model Backend

{% if config %}
Backend {{ config.model.backend if config.model else 'api' }}
Model {{ config.model.model if config.model else 'claude-haiku-4-5-20251001' }}
Budget per Query ${{ config.cost.budget_per_query if config.cost else 0.10 }}
{% else %}

No configuration loaded

{% endif %}

Neo4j Status

Checking Neo4j...
Neo4j not connected. Graph is served from JSON.

To enable Neo4j, set graph.connector: neo4j in graqle.yaml

StatusConnected
Nodes
Chunks
Vector Index

About

GraQle Versionv{{ version }}
PatentEP26162901.8
LicenseApache 2.0
Innovations15
{% endblock %} {% block scripts %} {% endblock %}