mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- Updated the pre-push hook to comment out formatting and lint checks for easier debugging. - Simplified VSCode settings for default formatting across various file types. - Introduced MediaPipe LLM Bridge for Android, enabling on-device LLM inference. - Updated build scripts and dependencies to support MediaPipe integration. - Refactored TDLib Bridge to indicate that TDLib is not available on Android, ensuring clarity in mobile platform capabilities. - Enhanced model commands to include Android-specific functionality for LLM operations. - Improved SocketManager to handle Android-specific socket connections and stubs. - Updated documentation and comments to reflect changes in platform support and functionality.
14 lines
748 B
JSON
14 lines
748 B
JSON
{
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[javascriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
|
|
"[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }
|
|
}
|