matt HOFFNER commited on
Commit
1f55d89
β€’
1 Parent(s): 3db52d6

return all results for data responses we know are small

Browse files
Files changed (1) hide show
  1. pages/api/functions/embed.ts +1 -3
pages/api/functions/embed.ts CHANGED
@@ -43,9 +43,7 @@ export const serp: FunctionOutput = async ({ input }: FunctionInput) => {
43
  return serpApiResults;
44
  }
45
 
46
-
47
  export const sports: FunctionOutput = async ({ input }: FunctionInput) => {
48
  const content: string = await sportsScoresApi({input})
49
- const serpApiResults = await similaritySearch(input, content);
50
- return serpApiResults;
51
  }
 
43
  return serpApiResults;
44
  }
45
 
 
46
  export const sports: FunctionOutput = async ({ input }: FunctionInput) => {
47
  const content: string = await sportsScoresApi({input})
48
+ return content;
 
49
  }