You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/linkup/actions/search/search.mjs
+2-73Lines changed: 2 additions & 73 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ import app from "../../linkup.app.mjs";
2
2
3
3
exportdefault{
4
4
name: "Linkup Search",
5
-
description: "Search and retrieve insights using the Linkup API. [See the documentation](https://docs.linkup.so/pages/api-reference/endpoint/post-search)",
5
+
description: "Retrieve a list of objects relevant to a natural language search query.",
6
6
key: "linkup-search",
7
7
version: "0.0.1",
8
8
type: "action",
@@ -22,84 +22,13 @@ export default {
22
22
"deep",
23
23
],
24
24
},
25
-
outputType: {
26
-
type: "string",
27
-
label: "Output Type",
28
-
description: "The type of output you want to get. Use `structured` for a custom-formatted response defined by `structuredOutputSchema`",
29
-
options: [
30
-
{
31
-
value: "sourcedAnswer",
32
-
label: "Natural language answer and its sources",
33
-
},
34
-
{
35
-
value: "searchResults",
36
-
label: "Raw context",
37
-
},
38
-
{
39
-
value: "structured",
40
-
label: "Json format of the response",
41
-
},
42
-
],
43
-
reloadProps: true,
44
-
},
45
-
structuredOutputSchema: {
46
-
type: "string",
47
-
label: "Structured Output Schema",
48
-
description: "Schema for structured output (only applicable if Output Type is 'structured'). Provide a JSON schema (as a string) representing the desired response format.",
49
-
optional: true,
50
-
hidden: true,
51
-
},
52
-
includeImages: {
53
-
type: "boolean",
54
-
label: "Include Images",
55
-
description: "Defines whether the API should include images in its results",
0 commit comments