File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,19 +104,19 @@ const EditFileArgsSchema = z.object({
104104 edits : z . array ( EditOperation ) . optional ( ) . describe ( 'List of edits to apply (for partial edits)' ) ,
105105} ) ;
106106
107- type FirstPartyConfig = {
107+ export type FirstPartyConfig = {
108108 provider : SUPPORTED_FIRST_PARTYPROVIDERS ;
109109 model : ModelEnum ;
110110 apiKey : string ;
111111} ;
112112
113- type ThirdPartyConfig = {
113+ export type ThirdPartyConfig = {
114114 provider : SUPPORTED_THIRD_PARTY_PROVIDERS ;
115115 customModel : string ;
116116 apiKey : string ;
117117} ;
118118
119- type ModelProviderConfig = FirstPartyConfig | ThirdPartyConfig ;
119+ export type ModelProviderConfig = FirstPartyConfig | ThirdPartyConfig ;
120120
121121export class FileEditTool {
122122 private anthropic : { apiKey : string } | null = null ;
Original file line number Diff line number Diff line change 11{
22 "name" : " ai-file-edit" ,
3- "version" : " 2.0.0 " ,
3+ "version" : " 2.0.1 " ,
44 "main" : " dist/index.js" ,
55 "types" : " dist/index.d.ts" ,
66 "type" : " module" ,
You can’t perform that action at this time.
0 commit comments