@@ -6,6 +6,13 @@ import * as AuthorsAPI from './authors';
6
6
import { AuthorListParams , AuthorListResponse , AuthorListResponsesSinglePage , Authors } from './authors' ;
7
7
import * as TasksAPI from './tasks' ;
8
8
import { TaskListParams , TaskListResponse , TaskListResponsesSinglePage , Tasks } from './tasks' ;
9
+ import * as ToMarkdownAPI from './to-markdown' ;
10
+ import {
11
+ ToMarkdown ,
12
+ ToMarkdownTransformParams ,
13
+ ToMarkdownTransformResponse ,
14
+ ToMarkdownTransformResponsesSinglePage ,
15
+ } from './to-markdown' ;
9
16
import * as FinetunesAPI from './finetunes/finetunes' ;
10
17
import {
11
18
FinetuneCreateParams ,
@@ -27,6 +34,7 @@ export class AI extends APIResource {
27
34
authors : AuthorsAPI . Authors = new AuthorsAPI . Authors ( this . _client ) ;
28
35
tasks : TasksAPI . Tasks = new TasksAPI . Tasks ( this . _client ) ;
29
36
models : ModelsAPI . Models = new ModelsAPI . Models ( this . _client ) ;
37
+ toMarkdown : ToMarkdownAPI . ToMarkdown = new ToMarkdownAPI . ToMarkdown ( this . _client ) ;
30
38
31
39
/**
32
40
* This endpoint provides users with the capability to run specific AI models
@@ -1054,6 +1062,8 @@ AI.Tasks = Tasks;
1054
1062
AI . TaskListResponsesSinglePage = TaskListResponsesSinglePage ;
1055
1063
AI . Models = Models ;
1056
1064
AI . ModelListResponsesV4PagePaginationArray = ModelListResponsesV4PagePaginationArray ;
1065
+ AI . ToMarkdown = ToMarkdown ;
1066
+ AI . ToMarkdownTransformResponsesSinglePage = ToMarkdownTransformResponsesSinglePage ;
1057
1067
1058
1068
export declare namespace AI {
1059
1069
export { type AIRunResponse as AIRunResponse , type AIRunParams as AIRunParams } ;
@@ -1086,4 +1096,11 @@ export declare namespace AI {
1086
1096
ModelListResponsesV4PagePaginationArray as ModelListResponsesV4PagePaginationArray ,
1087
1097
type ModelListParams as ModelListParams ,
1088
1098
} ;
1099
+
1100
+ export {
1101
+ ToMarkdown as ToMarkdown ,
1102
+ type ToMarkdownTransformResponse as ToMarkdownTransformResponse ,
1103
+ ToMarkdownTransformResponsesSinglePage as ToMarkdownTransformResponsesSinglePage ,
1104
+ type ToMarkdownTransformParams as ToMarkdownTransformParams ,
1105
+ } ;
1089
1106
}
0 commit comments