MCPcopy Create free account
hub / github.com/developersdigest/llm-answer-engine / getTickers

Function getTickers

app/function-calling.tsx:75–77  ·  view source on GitHub ↗
(ticker: string)

Source from the content-addressed store, hash-verified

73 }
74}
75export async function getTickers(ticker: string) {
76 return JSON.stringify({ type: 'ticker', data: ticker });
77}
78export async function searchSong(query: string): Promise<string> {
79 const items = await api.search(query, ["track"]);
80 const track = items.tracks.items[0];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected