mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00

* doc * feat: file upload config * perf: chat box file params * feat: markdown show file * feat: chat file store and clear * perf: read file contentType * feat: llm vision config * feat: file url output * perf: plugin error text * perf: image load * feat: ai chat document * perf: file block ui * feat: read file node * feat: file read response field * feat: simple mode support read files * feat: tool call * feat: read file histories * perf: select file * perf: select file config * i18n * i18n * fix: ts; feat: tool response preview result
28 lines
976 B
JSON
28 lines
976 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.mouseWheelZoom": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"prettier.prettierPath": "node_modules/prettier",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"i18n-ally.localesPaths": [
|
|
"packages/web/i18n",
|
|
],
|
|
"i18n-ally.enabledParsers": [
|
|
"json",
|
|
"yaml",
|
|
"js",
|
|
"ts"
|
|
],
|
|
"i18n-ally.keystyle": "nested",
|
|
"i18n-ally.sortKeys": true,
|
|
"i18n-ally.keepFulfilled": false,
|
|
"i18n-ally.sourceLanguage": "zh", // 根据此语言文件翻译其他语言文件的变量和内容
|
|
"i18n-ally.displayLanguage": "zh", // 显示语言
|
|
"i18n-ally.namespace": true,
|
|
"i18n-ally.pathMatcher": "{locale}/{namespaces}.json",
|
|
"i18n-ally.extract.targetPickingStrategy": "most-similar-by-key",
|
|
"i18n-ally.translate.engines": ["deepl", "google"],
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
} |