Doza Assist Core — free & open source. AI editor's assistant that learns your style from your own cuts. Turn interview footage into rough cuts for Final Cut, Premiere, and Resolve. Mac-native. Local-first.
51
stars
111
commits
Python
primary language
Sep 1, 2026
updated
Doza Assist Core is free and open source. Doza Assist — the commercial Mac app — adds multi-interview and press-ready workflow features for documentary and series work.
An AI editor's assistant that learns your style from your own cuts, then does the first pass for you. Not a generic model. Not trained on someone else's taste. Yours.
Drop in an interview. Get back a rough cut shaped by your editorial voice, ready for Final Cut Pro, Premiere Pro, or DaVinci Resolve. Everything runs on your machine. Nothing uploads. Free and open source under MIT.
Local-first, free by default. Doza Assist ships with a local Gemma 4 model that runs entirely on your Mac — no account, no usage fees, works offline, no footage leaves your machine. If you want faster or sharper analysis, you can optionally drop in your own Anthropic (Claude) or OpenAI API key in AI Settings and route the AI through their cloud APIs at your own per-call cost — typically a few cents per interview, billed directly by them. Nothing about your footage or transcript is sent to Doza Visuals; the only outbound traffic is between your machine and the API provider you chose.
Editorial DNA is the whole point. Feed the app your finished work and it builds a profile of how you shape spoken stories: pacing, opening patterns, structural habits, tonal choices. Every suggestion after that gets filtered through your voice. Build multiple profiles for different kinds of work. A documentary profile. A social cuts profile. A corporate testimonial profile. It's fully in the open source version. No paywall.
Built for documentary editors first, because that's where the pain is sharpest and the craft is most refined. Works just as well for anyone cutting interview-driven video: corporate case studies, podcast-to-video, branded docs, event highlights, long-form creator work. If someone's talking on camera and you need the moments that carry the story, this tool does the heavy lifting.
I'm a documentary filmmaker and I needed a way to find story beats and soundbites across hours of interview footage without uploading client material to cloud services. Existing tools were either too expensive, too slow, or required sending sensitive footage to third-party servers. So I built something that runs entirely on my Mac, uses AI locally, and exports directly to whichever NLE you're cutting in — Final Cut Pro, Premiere Pro, or DaVinci Resolve.
The core idea: most AI editors sound generic because they've never seen your work. My Style fixes that. You feed Doza Assist the finished pieces you've already cut, and it learns the way you shape spoken stories — pacing, openings, what you cut around, what you let breathe, what subjects you gravitate toward. From that point on, every AI suggestion in the app sounds like you made it.
Everything runs locally. Your finished work never leaves your machine.
You probably don't cut a long-form documentary the same way you cut a 60-second social piece. My Style supports as many profiles as you need:
Every time you import new projects or regenerate your analysis, Doza Assist takes a snapshot of your style at that moment. The Evolution tab shows how your voice has shifted over time — new themes appearing, pacing getting tighter, endings opening up. It's a private changelog of your editorial growth.
The dashboard has a Refine my style box. Type the things the analyzer might not catch — "I prefer cold opens," "I never use voiceover narration," "I always end on the subject's face" — and those notes get woven into every AI suggestion with high priority.
~/.doza-assist/editorial_dna/ on your machineTranscription
Transcript Viewer
Clip Library
Storytelling Foundation (operational reference for the AI features below)
docs/storytelling-foundation-oss.md so you can read what the model is told, edit it, or swap in your own copy via the DOZA_STORYTELLING_PATH environment variableDOZA_STORYTELLING_DISABLED=1 if you want a clean baseline for comparisonAI Analysis (powered by Ollama — free, local)
Narrative Intelligence (AI Chat)
+ button to add as a clip on the spotStory Builder
Multi-NLE Export (new in v2.4)
Client Sharing
Project Organization
My Style (see the full section above) — multi-profile editorial voice learning, live dashboard, evolution snapshots, bright ON/OFF indicator in chat & story builder.
Dark / Light Theme
If you're already working in FCP with a multicam clip or a synchronized clip, you don't have to export audio or proxies to get started. Drop the FCPXML (or the .fcpxmld bundle) onto the dashboard and Doza Assist will read the active audio angle straight out of the container and transcribe against it — the original source file on your edit drive stays put.
<mc-clip> on the timeline, finds the <mc-source srcEnable="audio"> angle, resolves it back to the underlying audio asset<asset-clip audioRole="dialogue">.fcpxml export and the bundled .fcpxmld form FCP produces by defaultThe detected audio path is shown at the top of the project view so you can verify Doza Assist found the right file before transcription kicks off. If the file isn't reachable (usually because the edit drive isn't mounted), the app tells you which volume it was looking for.
For anything with multicam angles or sync-clips, always use the Export tab → "FCPXML Round-Trip" section. The regular "Export FCPXML" button at the top of the Export tab writes a flat asset-clip timeline against the audio file only — it doesn't carry the multicam angle enablement, so selects would import into FCP with audio but no video. The FCPXML Round-Trip section is the one that preserves your original multicam / sync-clip container and re-attaches video in FCP.
Once you've made selects in Doza Assist, the FCPXML Round-Trip section gives you two output modes that preserve the original multicam/sync-clip container:
<mc-clip> (or an <asset-clip> for sync-clip sources) on a brand-new timeline, reusing the same ref, the same angle enablement, and the same <resources> block as the source FCPXML. Import it into FCP and your selects drop as a fresh project against the original multicam with video and synced audio intact.<marker> elements injected at each select's in-point. Marker style encodes the select type (completion markers for strongest picks, standard markers for supporting, to-do markers for questions).The original <resources> block — including the asset IDs and the base64 bookmark blobs that FCP uses to locate media on re-import — is preserved byte-for-byte in the output. FCP is strict about bookmark mismatches, so this is what makes the round-trip land cleanly.
Download Doza Assist (macOS)
.dmg file from the link aboveFirst launch: macOS may block the app. Go to System Settings > Privacy & Security, scroll down, and click "Open Anyway" next to the Doza Assist message. This only happens once.
On first launch, the app will automatically install everything it needs. You may be asked for your Mac password once during setup. The AI model download (~3-5 GB) takes a few minutes — the app shows progress the whole time.
That's it. No Terminal required.
If you prefer to run from source:
brew install ffmpeg)https://ollama.com)git clone https://github.com/DozaVisuals/doza-assist.git
cd doza-assist
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Install ffmpeg if you don't have it
brew install ffmpeg
./start.sh
Local with Ollama (free, private — recommended):
# Install and start Ollama
brew install ollama
ollama serve
# Pull a model (Gemma 4 recommended — the app auto-selects the right size for your hardware)
ollama pull gemma4:e4b # mid-tier default (9.6 GB); use gemma4:e2b for <16 GB RAM
Cloud with Claude API (higher quality, optional): If you want better AI analysis quality, you can use Anthropic's Claude API as an alternative backend. Transcription still runs locally — only the AI analysis and chat use the API.
export ANTHROPIC_API_KEY=sk-ant-your-key-here
# Add to ~/.zshrc to persist
The app automatically tries Ollama first and falls back to Claude if configured.
Everything in this repository is the complete free tier — full transcription, AI analysis, clip-library-aware chat, My Style, Story Builder, and FCPXML import/export. Doza Assist adds higher-level workflow features on top of the same local-first engine, packaged as a signed, notarized one-click Mac app (models bundled, auto-updates — no Python or Homebrew setup):
| Doza Assist Core (this repo) | Doza Assist (Mac app) | |
|---|---|---|
| Transcription, Analysis, Chat, Story Builder, My Style, FCPXML export | Full | Full |
| Speaker labels (diarization) | — | Included |
| Multicam round-trip (selects return to Final Cut Pro as a new project built from your original multicam clips — angles and sync intact) | — | Included |
| Documents export (full transcript, selects, quote sheet as Word / PDF / Excel) | — | Included |
| Collections (cross-interview analysis) | — | Included |
| Story Brief | — | Included |
| Quote Sheets | — | Included |
| One-click install (signed app, bundled models, auto-updates) | — | Included |
Try the app free: the doza.ai download now includes a free trial — every feature works on the first 2 minutes of each file; a license unlocks full length in place.
Contributions to this repository are accepted under the Contributor License Agreement, which keeps every contribution available here under MIT while allowing it to ship in the commercial editions too.
doza-assist/
├── app.py # Flask server + all routes
├── transcribe.py # Whisper transcription engine
├── ai_analysis.py # AI analysis + chat (Ollama/Claude)
├── fcpxml_export.py # FCPXML generation with pre-cut timelines
├── exporters/ # Multi-NLE export package (v2.4+)
│ ├── base.py # BaseExporter ABC + ExportResult
│ ├── router.py # Platform → exporter instance
│ ├── fcpxml.py # FCPXML wrapper (delegates to fcpxml_export.py)
│ ├── premiere_xml.py # FCP7 XML / xmeml v5 for Premiere Pro
│ ├── edl.py # CMX 3600 EDL for DaVinci Resolve
│ └── media_probe.py # Shared ffprobe helpers
├── preferences.py # User prefs (~/Library/Application Support/Doza Assist/)
├── editorial_dna/ # My Style — editorial voice profiling
│ ├── models.py # StyleProfileSummary schema (v2.1)
│ ├── profiles.py # Multi-profile CRUD + v1→v2.1 migration
│ ├── snapshots.py # Evolution tracking + delta computation
│ ├── analysis.py # Structured LLM analysis pass
│ ├── transcript_analyzer.py # Narrative pattern extraction
│ ├── classifier.py # AI-powered style classification
│ ├── summarizer.py # Grounded prose summary generation
│ └── injector.py # Injects active profile into AI prompts
├── start.sh # Launch script (developer mode)
├── install.sh # Manual setup (developer mode)
├── setup_runner.sh # Auto-setup phase 1 (Xcode CLT, Homebrew, Python)
├── setup_assistant.py # Auto-setup phase 2 (browser UI for remaining deps)
├── dep_check.sh # Quick dependency checker for app launches
├── build_launcher.sh # Builds .app bundle + .dmg
├── requirements.txt # Python dependencies
├── static/
│ └── style.css # All styles (dark + light themes)
├── templates/
│ ├── dashboard.html # Projects page with folders
│ ├── project.html # Main project view (all tabs)
│ ├── my_style.html # My Style page
│ └── ...
├── projects/ # User data (gitignored)
└── exports/ # FCPXML exports (gitignored)
Join the Doza Assist Discord — editors comparing workflows, sharing My Style profiles, and getting help directly from the developer. It's the fastest place to ask a question, show what you're cutting, or talk through a feature idea before opening an issue.
Bugs and feature requests are still tracked in GitHub Issues; the Discord is where the conversation happens.
Install failing?
Run bash install.sh --clean to wipe the setup and start completely fresh.
Want to completely remove Doza Assist?
Run bash uninstall.sh — it will walk you through what gets removed and ask before doing anything.
Getting a Python error or "command not found"? Make sure Xcode Command Line Tools are installed:
xcode-select --install
Wait for the installer to finish, then run bash install.sh --clean.
macOS blocking the app? Go to System Settings > Privacy & Security, scroll down, and click Open Anyway next to the Doza Assist message. This only happens once.
Want to report a bug?
The installer saves a full log to install_log.txt in the project folder. Attach it when reporting issues — it shows exactly where things went wrong.
MIT
This project is released under the MIT License (see LICENSE).
Third-party models used at runtime (not bundled):
| Component | License | Notes |
|---|---|---|
| Gemma 4 (via Ollama) | Apache 2.0 | Downloaded at runtime by the user via Ollama. Google LLC retains copyright. See Gemma model card. |
| OpenAI Whisper | MIT | Non-English transcription fallback. |
| Parakeet TDT 0.6B v2 (via Hugging Face) | CC-BY-4.0 | English transcription engine; converted from nvidia/parakeet-tdt-0.6b-v2 by the MLX Community. |
| Ollama | MIT | Local model runner. Downloaded and installed separately by the user. |
Model weights are never bundled in this repository or in any release artifact. All models are downloaded at runtime by the user via Ollama or Hugging Face.
Gemma 4 variant selection: On first run the app detects your hardware (RAM, architecture) and automatically selects an appropriate Gemma 4 variant. You can override this with --model-tier small|medium|large|xlarge or by editing ~/Library/Application Support/DozaAssist/model_config.json. See model_config.py for details.
Users are responsible for complying with the licenses of any models they download, including Ollama's terms and any additional usage policies published by the model providers.
Built by Doza Visuals
109 commits
2 commits
Python
68.4%
HTML
20.3%
CSS
6.3%
Shell
3.2%
JavaScript
1.8%
Doza Assist Core — free & open source. AI editor's assistant that learns your style from your own cuts. Turn interview footage into rough cuts for Final Cut, Premiere, and Resolve. Mac-native. Local-first.
51
stars
111
commits
Python
primary language
Sep 1, 2026
updated
Doza Assist Core is free and open source. Doza Assist — the commercial Mac app — adds multi-interview and press-ready workflow features for documentary and series work.
An AI editor's assistant that learns your style from your own cuts, then does the first pass for you. Not a generic model. Not trained on someone else's taste. Yours.
Drop in an interview. Get back a rough cut shaped by your editorial voice, ready for Final Cut Pro, Premiere Pro, or DaVinci Resolve. Everything runs on your machine. Nothing uploads. Free and open source under MIT.
Local-first, free by default. Doza Assist ships with a local Gemma 4 model that runs entirely on your Mac — no account, no usage fees, works offline, no footage leaves your machine. If you want faster or sharper analysis, you can optionally drop in your own Anthropic (Claude) or OpenAI API key in AI Settings and route the AI through their cloud APIs at your own per-call cost — typically a few cents per interview, billed directly by them. Nothing about your footage or transcript is sent to Doza Visuals; the only outbound traffic is between your machine and the API provider you chose.
Editorial DNA is the whole point. Feed the app your finished work and it builds a profile of how you shape spoken stories: pacing, opening patterns, structural habits, tonal choices. Every suggestion after that gets filtered through your voice. Build multiple profiles for different kinds of work. A documentary profile. A social cuts profile. A corporate testimonial profile. It's fully in the open source version. No paywall.
Built for documentary editors first, because that's where the pain is sharpest and the craft is most refined. Works just as well for anyone cutting interview-driven video: corporate case studies, podcast-to-video, branded docs, event highlights, long-form creator work. If someone's talking on camera and you need the moments that carry the story, this tool does the heavy lifting.
I'm a documentary filmmaker and I needed a way to find story beats and soundbites across hours of interview footage without uploading client material to cloud services. Existing tools were either too expensive, too slow, or required sending sensitive footage to third-party servers. So I built something that runs entirely on my Mac, uses AI locally, and exports directly to whichever NLE you're cutting in — Final Cut Pro, Premiere Pro, or DaVinci Resolve.
The core idea: most AI editors sound generic because they've never seen your work. My Style fixes that. You feed Doza Assist the finished pieces you've already cut, and it learns the way you shape spoken stories — pacing, openings, what you cut around, what you let breathe, what subjects you gravitate toward. From that point on, every AI suggestion in the app sounds like you made it.
Everything runs locally. Your finished work never leaves your machine.
You probably don't cut a long-form documentary the same way you cut a 60-second social piece. My Style supports as many profiles as you need:
Every time you import new projects or regenerate your analysis, Doza Assist takes a snapshot of your style at that moment. The Evolution tab shows how your voice has shifted over time — new themes appearing, pacing getting tighter, endings opening up. It's a private changelog of your editorial growth.
The dashboard has a Refine my style box. Type the things the analyzer might not catch — "I prefer cold opens," "I never use voiceover narration," "I always end on the subject's face" — and those notes get woven into every AI suggestion with high priority.
~/.doza-assist/editorial_dna/ on your machineTranscription
Transcript Viewer
Clip Library
Storytelling Foundation (operational reference for the AI features below)
docs/storytelling-foundation-oss.md so you can read what the model is told, edit it, or swap in your own copy via the DOZA_STORYTELLING_PATH environment variableDOZA_STORYTELLING_DISABLED=1 if you want a clean baseline for comparisonAI Analysis (powered by Ollama — free, local)
Narrative Intelligence (AI Chat)
+ button to add as a clip on the spotStory Builder
Multi-NLE Export (new in v2.4)
Client Sharing
Project Organization
My Style (see the full section above) — multi-profile editorial voice learning, live dashboard, evolution snapshots, bright ON/OFF indicator in chat & story builder.
Dark / Light Theme
If you're already working in FCP with a multicam clip or a synchronized clip, you don't have to export audio or proxies to get started. Drop the FCPXML (or the .fcpxmld bundle) onto the dashboard and Doza Assist will read the active audio angle straight out of the container and transcribe against it — the original source file on your edit drive stays put.
<mc-clip> on the timeline, finds the <mc-source srcEnable="audio"> angle, resolves it back to the underlying audio asset<asset-clip audioRole="dialogue">.fcpxml export and the bundled .fcpxmld form FCP produces by defaultThe detected audio path is shown at the top of the project view so you can verify Doza Assist found the right file before transcription kicks off. If the file isn't reachable (usually because the edit drive isn't mounted), the app tells you which volume it was looking for.
For anything with multicam angles or sync-clips, always use the Export tab → "FCPXML Round-Trip" section. The regular "Export FCPXML" button at the top of the Export tab writes a flat asset-clip timeline against the audio file only — it doesn't carry the multicam angle enablement, so selects would import into FCP with audio but no video. The FCPXML Round-Trip section is the one that preserves your original multicam / sync-clip container and re-attaches video in FCP.
Once you've made selects in Doza Assist, the FCPXML Round-Trip section gives you two output modes that preserve the original multicam/sync-clip container:
<mc-clip> (or an <asset-clip> for sync-clip sources) on a brand-new timeline, reusing the same ref, the same angle enablement, and the same <resources> block as the source FCPXML. Import it into FCP and your selects drop as a fresh project against the original multicam with video and synced audio intact.<marker> elements injected at each select's in-point. Marker style encodes the select type (completion markers for strongest picks, standard markers for supporting, to-do markers for questions).The original <resources> block — including the asset IDs and the base64 bookmark blobs that FCP uses to locate media on re-import — is preserved byte-for-byte in the output. FCP is strict about bookmark mismatches, so this is what makes the round-trip land cleanly.
Download Doza Assist (macOS)
.dmg file from the link aboveFirst launch: macOS may block the app. Go to System Settings > Privacy & Security, scroll down, and click "Open Anyway" next to the Doza Assist message. This only happens once.
On first launch, the app will automatically install everything it needs. You may be asked for your Mac password once during setup. The AI model download (~3-5 GB) takes a few minutes — the app shows progress the whole time.
That's it. No Terminal required.
If you prefer to run from source:
brew install ffmpeg)https://ollama.com)git clone https://github.com/DozaVisuals/doza-assist.git
cd doza-assist
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Install ffmpeg if you don't have it
brew install ffmpeg
./start.sh
Local with Ollama (free, private — recommended):
# Install and start Ollama
brew install ollama
ollama serve
# Pull a model (Gemma 4 recommended — the app auto-selects the right size for your hardware)
ollama pull gemma4:e4b # mid-tier default (9.6 GB); use gemma4:e2b for <16 GB RAM
Cloud with Claude API (higher quality, optional): If you want better AI analysis quality, you can use Anthropic's Claude API as an alternative backend. Transcription still runs locally — only the AI analysis and chat use the API.
export ANTHROPIC_API_KEY=sk-ant-your-key-here
# Add to ~/.zshrc to persist
The app automatically tries Ollama first and falls back to Claude if configured.
Everything in this repository is the complete free tier — full transcription, AI analysis, clip-library-aware chat, My Style, Story Builder, and FCPXML import/export. Doza Assist adds higher-level workflow features on top of the same local-first engine, packaged as a signed, notarized one-click Mac app (models bundled, auto-updates — no Python or Homebrew setup):
| Doza Assist Core (this repo) | Doza Assist (Mac app) | |
|---|---|---|
| Transcription, Analysis, Chat, Story Builder, My Style, FCPXML export | Full | Full |
| Speaker labels (diarization) | — | Included |
| Multicam round-trip (selects return to Final Cut Pro as a new project built from your original multicam clips — angles and sync intact) | — | Included |
| Documents export (full transcript, selects, quote sheet as Word / PDF / Excel) | — | Included |
| Collections (cross-interview analysis) | — | Included |
| Story Brief | — | Included |
| Quote Sheets | — | Included |
| One-click install (signed app, bundled models, auto-updates) | — | Included |
Try the app free: the doza.ai download now includes a free trial — every feature works on the first 2 minutes of each file; a license unlocks full length in place.
Contributions to this repository are accepted under the Contributor License Agreement, which keeps every contribution available here under MIT while allowing it to ship in the commercial editions too.
doza-assist/
├── app.py # Flask server + all routes
├── transcribe.py # Whisper transcription engine
├── ai_analysis.py # AI analysis + chat (Ollama/Claude)
├── fcpxml_export.py # FCPXML generation with pre-cut timelines
├── exporters/ # Multi-NLE export package (v2.4+)
│ ├── base.py # BaseExporter ABC + ExportResult
│ ├── router.py # Platform → exporter instance
│ ├── fcpxml.py # FCPXML wrapper (delegates to fcpxml_export.py)
│ ├── premiere_xml.py # FCP7 XML / xmeml v5 for Premiere Pro
│ ├── edl.py # CMX 3600 EDL for DaVinci Resolve
│ └── media_probe.py # Shared ffprobe helpers
├── preferences.py # User prefs (~/Library/Application Support/Doza Assist/)
├── editorial_dna/ # My Style — editorial voice profiling
│ ├── models.py # StyleProfileSummary schema (v2.1)
│ ├── profiles.py # Multi-profile CRUD + v1→v2.1 migration
│ ├── snapshots.py # Evolution tracking + delta computation
│ ├── analysis.py # Structured LLM analysis pass
│ ├── transcript_analyzer.py # Narrative pattern extraction
│ ├── classifier.py # AI-powered style classification
│ ├── summarizer.py # Grounded prose summary generation
│ └── injector.py # Injects active profile into AI prompts
├── start.sh # Launch script (developer mode)
├── install.sh # Manual setup (developer mode)
├── setup_runner.sh # Auto-setup phase 1 (Xcode CLT, Homebrew, Python)
├── setup_assistant.py # Auto-setup phase 2 (browser UI for remaining deps)
├── dep_check.sh # Quick dependency checker for app launches
├── build_launcher.sh # Builds .app bundle + .dmg
├── requirements.txt # Python dependencies
├── static/
│ └── style.css # All styles (dark + light themes)
├── templates/
│ ├── dashboard.html # Projects page with folders
│ ├── project.html # Main project view (all tabs)
│ ├── my_style.html # My Style page
│ └── ...
├── projects/ # User data (gitignored)
└── exports/ # FCPXML exports (gitignored)
Join the Doza Assist Discord — editors comparing workflows, sharing My Style profiles, and getting help directly from the developer. It's the fastest place to ask a question, show what you're cutting, or talk through a feature idea before opening an issue.
Bugs and feature requests are still tracked in GitHub Issues; the Discord is where the conversation happens.
Install failing?
Run bash install.sh --clean to wipe the setup and start completely fresh.
Want to completely remove Doza Assist?
Run bash uninstall.sh — it will walk you through what gets removed and ask before doing anything.
Getting a Python error or "command not found"? Make sure Xcode Command Line Tools are installed:
xcode-select --install
Wait for the installer to finish, then run bash install.sh --clean.
macOS blocking the app? Go to System Settings > Privacy & Security, scroll down, and click Open Anyway next to the Doza Assist message. This only happens once.
Want to report a bug?
The installer saves a full log to install_log.txt in the project folder. Attach it when reporting issues — it shows exactly where things went wrong.
MIT
This project is released under the MIT License (see LICENSE).
Third-party models used at runtime (not bundled):
| Component | License | Notes |
|---|---|---|
| Gemma 4 (via Ollama) | Apache 2.0 | Downloaded at runtime by the user via Ollama. Google LLC retains copyright. See Gemma model card. |
| OpenAI Whisper | MIT | Non-English transcription fallback. |
| Parakeet TDT 0.6B v2 (via Hugging Face) | CC-BY-4.0 | English transcription engine; converted from nvidia/parakeet-tdt-0.6b-v2 by the MLX Community. |
| Ollama | MIT | Local model runner. Downloaded and installed separately by the user. |
Model weights are never bundled in this repository or in any release artifact. All models are downloaded at runtime by the user via Ollama or Hugging Face.
Gemma 4 variant selection: On first run the app detects your hardware (RAM, architecture) and automatically selects an appropriate Gemma 4 variant. You can override this with --model-tier small|medium|large|xlarge or by editing ~/Library/Application Support/DozaAssist/model_config.json. See model_config.py for details.
Users are responsible for complying with the licenses of any models they download, including Ollama's terms and any additional usage policies published by the model providers.
Built by Doza Visuals
109 commits
2 commits
Python
68.4%
HTML
20.3%
CSS
6.3%
Shell
3.2%
JavaScript
1.8%