Your data stays on your machine
Conversations, canvas state and run history are saved to a SQLite file on your own disk. No account and no cloud sync.
./data/geochat-desktop.sqlite
GeoChat puts an AI assistant and GeoGebra in one desktop math tool. Enter a problem and it plans the construction, writes GeoGebra commands into the canvas, and explains the reasoning behind each step.
macOS and WindowsApache-2.0, open sourceYour data stays local
These are the features currently supported in the desktop app.
Conversations, canvas state and run history are saved to a SQLite file on your own disk. No account and no cloud sync.
./data/geochat-desktop.sqlite
Add your model provider's API key in settings. Requests go directly from your machine to that provider, without passing through GeoChat.
OpenAI · Anthropic · Google · DeepSeek · Alibaba · OpenRouter
GeoChat writes real commands into the embedded GeoGebra canvas. The resulting figure can be dragged, measured, and edited further.
O = Intersect(m_1, m_2)
The GeoGebra runtime ships inside the app. Plane geometry, coordinate geometry, function graphs and solid geometry all use the same workspace.
The construction plan, tool calls and reasoning are shown in order so you can check them one by one.
Import a local problem bank to work through sets in bulk, and export any canvas as a .ggb file that a student or colleague can open in their own GeoGebra.
*.ggb
Read, plan, write commands, explain. The desktop app handles all four stages; only model inference needs the network.
Given triangle ABC, construct its circumcircle.
A = (-3, -1)B = (3, -1)C = (1, 3)m_1 = PerpendicularBisector(A, B)m_2 = PerpendicularBisector(B, C)O = Intersect(m_1, m_2)k = Circle(O, A)SetCaption(O, "Circumcenter")Identify the given conditions, constraints and goal.
Choose the construction order and the geometric objects needed at each step.
Convert the construction plan into GeoGebra commands and write them into the canvas one by one.
Explain why these objects produce the requested result.
From typed problem to finished figure, shown at real speed.
The canvas is the main view. The chat panel can be collapsed or moved, and model settings live in the app's local settings page.

Open source, free, no sign-up. All you need to bring is an API key from a model provider.