Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/localcowork/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ src-tauri/gen/
_models/*.gguf
_models/*.bin
_models/*.safetensors
_models/.cache/
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says this is only a .gitignore update and a comment about the HuggingFace cache, but this PR also includes substantial frontend and Rust/Tauri code changes (new UI, config watcher, inference changes, etc.). Please update the PR description/title to match the actual scope, or split these changes into separate PRs so review risk is manageable.

Copilot uses AI. Check for mistakes.

# ─── IDE ──────────────────────────────────────────────────────────────────
.vscode/
Expand Down
4 changes: 4 additions & 0 deletions examples/localcowork/_models/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ active_model: lfm2-24b-a2b # Sparse MoE: 24B total, 2.3B active, 64 experts top

# Default model directory for non-Ollama model files (GGUF, MLX, etc.)
models_dir: "${LOCALCOWORK_MODELS_DIR:-~/Projects/_models}"
# HuggingFace model downloads default to the user cache directory
# (typically ~/.cache/huggingface on Linux/macOS) and can be overridden
# via HF_HOME, HF_HUB_CACHE, or XDG_CACHE_HOME. Pointing these to the
# project directory will cause large cache files to be included here.

# ─── Tool Surface Curation ──────────────────────────────────────────────────
# By default, only the curated high-accuracy servers and tools are active.
Expand Down
3,672 changes: 3,672 additions & 0 deletions src-tauri/src/commands/chat.rs

Large diffs are not rendered by default.

Loading
Loading