Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 4 additions & 0 deletions .cursor/rules/simple.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
alwaysApply: true
---

# Formatting

- Format using `dprint fmt` from the root. Do not use `cargo fmt`.

# Mutation
- Never do manual state management for form/mutation. Things like setError is anti-pattern. use useForm(from tanstack-form) and useQuery/useMutation(from tanstack-query) for 99% cases.

Expand Down
11 changes: 9 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ kalosm-model-types = { git = "https://github.com/floneum/floneum", rev = "52967a
kalosm-sound = { git = "https://github.com/floneum/floneum", rev = "52967ae", default-features = false }
kalosm-streams = { git = "https://github.com/floneum/floneum", rev = "52967ae" }

deepgram = { version = "0.6.8", default-features = false }
deepgram = { version = "0.7", default-features = false }
libsql = "0.9.24"

block2 = "0.6"
Expand Down
28 changes: 14 additions & 14 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.51",
"@ai-sdk/anthropic": "^2.0.41",
"@ai-sdk/azure": "^2.0.63",
"@ai-sdk/google": "^2.0.28",
"@ai-sdk/google-vertex": "^3.0.58",
"@ai-sdk/openai": "^2.0.62",
"@ai-sdk/azure": "^2.0.66",
"@ai-sdk/google": "^2.0.29",
"@ai-sdk/google-vertex": "^3.0.59",
"@ai-sdk/openai": "^2.0.64",
"@ai-sdk/openai-compatible": "^1.0.26",
"@ai-sdk/react": "^2.0.87",
"@ai-sdk/react": "^2.0.89",
"@electric-sql/client": "^1.1.3",
"@floating-ui/react": "^0.27.16",
"@huggingface/languages": "^1.0.0",
Expand All @@ -43,16 +43,16 @@
"@hypr/utils": "workspace:^",
"@iconify-icon/react": "^3.0.3",
"@lobehub/icons": "^2.43.1",
"@openrouter/ai-sdk-provider": "^1.2.0",
"@openrouter/ai-sdk-provider": "^1.2.1",
"@orama/highlight": "^0.1.9",
"@orama/orama": "^3.1.16",
"@orama/plugin-qps": "^3.1.16",
"@sentry/react": "^8.55.0",
"@supabase/supabase-js": "^2.79.0",
"@supabase/supabase-js": "^2.80.0",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-form": "^1.23.8",
"@tanstack/react-query": "^5.90.6",
"@tanstack/react-router": "^1.134.12",
"@tanstack/react-query": "^5.90.7",
"@tanstack/react-router": "^1.134.13",
"@tanstack/react-virtual": "^3.13.12",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-autostart": "^2.5.1",
Expand All @@ -68,12 +68,12 @@
"@wavesurfer/react": "^1.0.11",
"@xstate/react": "^6.0.0",
"@xstate/store": "^3.11.2",
"ai": "^5.0.87",
"ai": "^5.0.89",
"chroma-js": "^3.1.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.0",
"effect": "^3.19.0",
"effect": "^3.19.2",
"json5": "^2.2.3",
"lucide-react": "^0.544.0",
"motion": "^11.18.2",
Expand All @@ -93,8 +93,8 @@
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@tanstack/react-router-devtools": "^1.134.12",
"@tanstack/router-plugin": "^1.134.12",
"@tanstack/react-router-devtools": "^1.134.13",
"@tanstack/router-plugin": "^1.134.14",
"@tauri-apps/cli": "^2.9.3",
"@types/chroma-js": "^3.1.2",
"@types/json5": "^2.2.0",
Expand All @@ -108,7 +108,7 @@
"tailwindcss": "^3.4.18",
"tsx": "^4.20.6",
"typescript": "~5.8.3",
"vite": "^7.1.12",
"vite": "^7.2.2",
"vitest": "^3.2.4"
}
}
236 changes: 0 additions & 236 deletions apps/desktop/src/components/main/body/sessions/floating/generate.tsx

This file was deleted.

Loading
Loading