(data: PlainMessage<ListSupportedModelsRequest>)
| 114 | }; |
| 115 | |
| 116 | export const listSupportedModels = async (data: PlainMessage<ListSupportedModelsRequest>) => { |
| 117 | const response = await apiclientV2.get("/chats/models", data); |
| 118 | return fromJson(ListSupportedModelsResponseSchema, response); |
| 119 | }; |
| 120 | |
| 121 | export const getConversation = async (data: PlainMessage<GetConversationRequest>) => { |
| 122 | const response = await apiclientV2.get(`/chats/conversations/${data.conversationId}`); |
no test coverage detected