File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { Anthropic } from "@anthropic-ai/sdk"
2
- import { BetaThinkingConfigParam } from "@anthropic-ai/sdk/resources/beta/messages/index.mjs "
2
+ import { BetaThinkingConfigParam } from "@anthropic-ai/sdk/resources/beta/messages"
3
3
4
4
import { ApiConfiguration , ModelInfo , ApiHandlerOptions } from "../shared/api"
5
5
import { ANTHROPIC_DEFAULT_MAX_TOKENS } from "./providers/constants"
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "target" : " es5 " ,
3
+ "target" : " es2022 " ,
4
4
"lib" : [" dom" , " dom.iterable" , " esnext" ],
5
5
"allowJs" : true ,
6
6
"skipLibCheck" : true ,
17
17
"jsx" : " react-jsx" ,
18
18
"baseUrl" : " ." ,
19
19
"paths" : {
20
- "@/*" : [" ./src/*" ]
21
- }
20
+ "@/*" : [" ./src/*" ],
21
+ "js-tiktoken/ranks/o200k_base" : [" ../node_modules/js-tiktoken/dist/ranks/o200k_base" ]
22
+ },
23
+ "useUnknownInCatchVariables" : false ,
24
+ "downlevelIteration" : true
22
25
},
23
- "include" : [" src" , " ../src/shared" ]
26
+ "include" : [" src" , " ../src/shared" ],
27
+ "exclude" : [" node_modules" ]
24
28
}
You can’t perform that action at this time.
0 commit comments