Skip to content

Commit cdd2e4c

Browse files
committed
removed field types
1 parent e256f4c commit cdd2e4c

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

packages/jupyter-ai/src/handler.ts

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -99,28 +99,6 @@ export namespace AiService {
9999
| MultiEnvAuthStrategy
100100
| null;
101101

102-
export type TextField = {
103-
type: 'text';
104-
key: string;
105-
label: string;
106-
format: string;
107-
};
108-
109-
export type MultilineTextField = {
110-
type: 'text-multiline';
111-
key: string;
112-
label: string;
113-
format: string;
114-
};
115-
116-
export type IntegerField = {
117-
type: 'integer';
118-
key: string;
119-
label: string;
120-
};
121-
122-
export type Field = TextField | MultilineTextField | IntegerField;
123-
124102
export type ListProvidersEntry = {
125103
id: string;
126104
name: string;
@@ -131,7 +109,6 @@ export namespace AiService {
131109
registry: boolean;
132110
completion_models: string[];
133111
chat_models: string[];
134-
fields: Field[];
135112
};
136113

137114
export type ListProvidersResponse = {

0 commit comments

Comments
 (0)