MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / listSupportedModels

Function listSupportedModels

webapp/_webapp/src/query/api.ts:116–119  ·  view source on GitHub ↗
(data: PlainMessage<ListSupportedModelsRequest>)

Source from the content-addressed store, hash-verified

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

Callers 2

createSettingsTextInputFunction · 0.90

Calls 2

fromJsonFunction · 0.90
getMethod · 0.45

Tested by

no test coverage detected