matt HOFFNER
commited on
Commit
β’
5b87497
1
Parent(s):
9f52969
fix
Browse files
pages/api/functions/embed.ts
CHANGED
@@ -45,7 +45,7 @@ export const serp: FunctionOutput = async ({ input }: FunctionInput) => {
|
|
45 |
|
46 |
|
47 |
export const sports: FunctionOutput = async ({ input }: FunctionInput) => {
|
48 |
-
const content: string = await
|
49 |
const serpApiResults = await similaritySearch(input, content);
|
50 |
return serpApiResults;
|
51 |
}
|
|
|
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 |
}
|