remove unwanted exports

This commit is contained in:
Ramnique Singh 2025-07-11 15:17:10 +05:30
parent c1136558d8
commit 08dc00fe9e

View file

@ -30,7 +30,7 @@ const openai = createOpenAI({
baseURL: PROVIDER_BASE_URL,
});
export const ZUsage = z.object({
const ZUsage = z.object({
tokens: z.object({
total: z.number(),
prompt: z.number(),
@ -169,7 +169,7 @@ async function invokeRagTool(
return results;
}
export async function invokeWebhookTool(
async function invokeWebhookTool(
logger: PrefixLogger,
projectId: string,
name: string,