mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-26 20:12:38 +08:00
* Add .codebuddy and .zed to .gitignore and fix formatApiHost Prevent formatApiHost from processing undefined/empty host values and ignore editor-specific directories * Refactor reasoning tag selection logic for providers Move gpt-oss model handling from aws-bedrock case to openai case and consolidate tag selection logic into a single if-else chain. * Extract reasoning tag name into helper function * fix test * Replace array indexing with named object properties for reasoning tags Improves code readability by using descriptive property names instead of magic array indices when selecting reasoning tag names by model type. * Move host validation to start of formatApiHost
74 lines
763 B
Plaintext
74 lines
763 B
Plaintext
# Logs
|
|
logs
|
|
*.log*
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
.yarn-cache
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Yarn
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# Project
|
|
node_modules
|
|
dist
|
|
out
|
|
mcp_server
|
|
stats.html
|
|
.eslintcache
|
|
|
|
# ENV
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local
|
|
local
|
|
.aider*
|
|
.cursorrules
|
|
.cursor/*
|
|
.claude/*
|
|
.gemini/*
|
|
.qwen/*
|
|
.trae/*
|
|
.claude-code-router/*
|
|
.codebuddy/*
|
|
.zed/*
|
|
CLAUDE.local.md
|
|
|
|
# vitest
|
|
coverage
|
|
.vitest-cache
|
|
vitest.config.*.timestamp-*
|
|
|
|
# TypeScript incremental build
|
|
.tsbuildinfo
|
|
|
|
# playwright
|
|
playwright-report
|
|
test-results
|
|
|
|
YOUR_MEMORY_FILE_PATH
|