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

Function getCitationKeys

webapp/_webapp/src/query/api.ts:159–164  ·  view source on GitHub ↗
(data: PlainMessage<GetCitationKeysRequest>)

Source from the content-addressed store, hash-verified

157};
158
159export const getCitationKeys = async (data: PlainMessage<GetCitationKeysRequest>) => {
160 const response = await apiclientV2.get(`/chats/citation-keys`, data, {
161 ignoreErrorToast: true,
162 });
163 return fromJson(GetCitationKeysResponseSchema, response);
164};
165
166export const upsertProject = async (data: PlainMessage<UpsertProjectRequest>) => {
167 const response = await apiclient.put(`/projects/${data.projectId}`, data);

Callers 1

completeCitationKeysFunction · 0.90

Calls 2

fromJsonFunction · 0.90
getMethod · 0.45

Tested by

no test coverage detected