Talk to your code.

An AI-native code editor that edits, refactors, and explains your codebase. Every change is a reviewable diff.

Inline edits as diffs
Full codebase context
Multi-file refactors

See it in action

Edit code, refactor across files, and chat with your codebase in one interface.

Wizar
In Progress 1
Add batch processing
Generating...
Completed 2
Setup MNIST dataset
+120
Create model architecture
+453
Thinking...
SearchedPyTorch batch training best practices
Readtrain_model.py(current implementation)
I'll enhance your MNIST trainer with batch processing...
Agent
train_model.py
run_experiment.py
12
13
14
15
16
17
18
19
20
21
22
def train_model(config):
data = load(config.path)
+data = load(config.path, batch=32)
+loader = DataLoader(data)
model = Model(config)
for epoch in range(epochs):
for x in data:
+for batch in loader:
loss = model(batch)
loss.backward()

What Wizar does

AI assistance that produces diffs you review, not code you debug.

Inline edits as diffs

Select code, describe the change, and review line-by-line diffs before applying. Accept, reject, or iterate.

Chat with codebase context

Ask about implementation details, architecture, or dependencies. Get answers with file and line references.

Multi-file refactors

Describe the refactor goal. Review a change plan across files with import and dependency tracking.

Navigate and explain

Trace function calls, understand data flows, and map how components connect across your codebase.

Generate test cases

Create tests that follow your existing patterns and conventions. Review and adjust before adding.

Review and undo

Every change is tracked. Review diffs, accept or reject edits, and undo any step with full history.

How it works

Request changes, review diffs, and iterate with full control at every step.

1

Select code and describe the change

2

Review the diff with additions and removals

3

Accept, reject, or iterate on the edit

12function validate(data) {
13 if (!data) return false;
14 if (!data || !data.id) return false;
15 return true;
16}

Privacy and control

Choose what gets indexed, set retention policies, and audit all context access.

Project context control
Workspace access policies
Retention settings
Audit logging
Encryption in transit
Send code outside workspaceOff
Retention30 days
TelemetryMinimal
Audit logsOn

Pricing

Start free, scale when ready.

Starter

For individual developers

Free
  • Inline edits as diffs
  • Chat with codebase context
  • Single-file refactors
  • Local workspace indexing

Team

For development teams

£20/user/month
  • Everything in Starter
  • Multi-file refactors
  • Shared context policies
  • Audit logs and retention control
  • Priority support

Enterprise

For organizations

Custom
  • Everything in Team
  • Private deployment options
  • SSO and advanced auth
  • Custom retention policies
  • Dedicated support channel

FAQ

Common questions about how Wizar works.