mirror of
https://github.com/NoeFabris/opencode-antigravity-auth.git
synced 2026-05-13 15:46:05 +00:00
Implement comprehensive support for Claude thinking models with interleaved thinking in multi-turn conversations: - Add signature caching system to preserve and restore thinking block signatures across conversation turns, preventing "invalid signature" errors - Enable real-time SSE streaming with immediate forwarding of thinking tokens - Add interleaved-thinking-2025-05-14 beta header for Claude thinking models - Implement smart system hints to encourage thinking during tool use - Add VALIDATED mode for tool calling on Claude models - Ensure output token limits accommodate thinking budgets - Filter and sanitize thinking blocks, removing SDK-injected cache_control - Add comprehensive test suites for auth, cache, and request-helpers modules - Update build config to exclude test files from production builds - Document streaming and thinking features in README
14 lines
377 B
JSON
14 lines
377 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"allowImportingTsExtensions": false
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "index.ts"],
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx", "src/**/*.spec.ts", "src/**/*.spec.tsx"]
|
|
}
|