MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / listConversations

Function listConversations

web/js/api.js:27–33  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25}
26
27export async function listConversations() {
28 const res = await fetch(state.API_BASE + "/api/conversations");
29 if (!res.ok) {
30 throw new Error("Load Conversations Failed");
31 }
32 return await res.json();
33}
34
35export async function createConversation() {
36 const res = await fetch(state.API_BASE + "/api/conversations", {

Callers 1

ensureConversationFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected