Skip to content

Commit 14a40bf

Browse files
committed
lint
1 parent 051749b commit 14a40bf

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/handler.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,13 @@ export namespace AiService {
169169
}
170170

171171
export async function listChatModels(): Promise<string[]> {
172-
const response = await requestAPI<ListChatModelsResponse>('models/chat/', {
173-
method: 'GET'
174-
}, 'api/ai');
172+
const response = await requestAPI<ListChatModelsResponse>(
173+
'models/chat/',
174+
{
175+
method: 'GET'
176+
},
177+
'api/ai'
178+
);
175179
return response.chat_models;
176180
}
177181

0 commit comments

Comments
 (0)