MCPcopy
hub / github.com/karpathy/llm-council / loadConversations

Function loadConversations

frontend/src/App.jsx:25–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

23 }, [currentConversationId]);
24
25 const loadConversations = async () => {
26 try {
27 const convs = await api.listConversations();
28 setConversations(convs);
29 } catch (error) {
30 console.error('Failed to load conversations:', error);
31 }
32 };
33
34 const loadConversation = async (id) => {
35 try {

Callers 2

AppFunction · 0.85
handleSendMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected