-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
add linkup actions #15381
Open
juliette0704
wants to merge
11
commits into
PipedreamHQ:master
Choose a base branch
from
juliette0704:feat/add_linkup_actions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
add linkup actions #15381
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
8e5292d
add linkup actions
juliette0704 7138b09
rename key linkup answer
juliette0704 8d88992
delete unused method
juliette0704 0165140
change version
juliette0704 026f6dd
change version
juliette0704 d6313a7
Merge branch 'master' into feat/add_linkup_actions
juliette0704 ef7fc84
add versions
juliette0704 ac1611c
rename name in file
juliette0704 cd3b57e
erase structured
juliette0704 085ef70
Merge branch 'master' into feat/add_linkup_actions
juliette0704 aefed87
Merge branch 'master' into feat/add_linkup_actions
juliette0704 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import app from "../../linkup.app.mjs"; | ||
|
||
export default { | ||
name: "Linkup Answer", | ||
description: "Get a natural language answer to your natural language question.", | ||
key: "linkup-answer", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
query: { | ||
type: "string", | ||
label: "Query", | ||
description: "The search query for Linkup.", | ||
}, | ||
depth: { | ||
type: "string", | ||
label: "Search Depth", | ||
description: "Defines the precision of the search. `standard` returns results quickly; `deep` takes longer but yields more complete results.", | ||
options: [ | ||
"standard", | ||
"deep", | ||
], | ||
}, | ||
}, | ||
async run({ $ }) { | ||
try { | ||
const response = await this.app.search({ | ||
query: this.query, | ||
depth: this.depth, | ||
outputType: "sourcedAnswer", | ||
}); | ||
$.export("$summary", "Successfully completed search query"); | ||
return response; | ||
} catch (error) { | ||
console.error("Error calling Linkup API:", error); | ||
throw new Error(`Failed to fetch data from Linkup API: ${error.message}`); | ||
} | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import app from "../../linkup.app.mjs"; | ||
|
||
export default { | ||
name: "Linkup Sourced", | ||
description: "Get a natural language answer to your natural language question", | ||
key: "linkup-sourced", | ||
version: "0.1.1", | ||
type: "action", | ||
props: { | ||
app, | ||
query: { | ||
type: "string", | ||
label: "Query", | ||
description: "The search query for Linkup.", | ||
}, | ||
depth: { | ||
type: "string", | ||
label: "Search Depth", | ||
description: "Defines the precision of the search. `standard` returns results quickly; `deep` takes longer but yields more complete results.", | ||
options: [ | ||
"standard", | ||
"deep", | ||
], | ||
}, | ||
}, | ||
async run({ $ }) { | ||
try { | ||
const response = await this.app.search({ | ||
query: this.query, | ||
depth: this.depth, | ||
outputType: "sourcedAnswer", | ||
}); | ||
$.export("$summary", "Successfully completed search query"); | ||
return response; | ||
} catch (error) { | ||
console.error("Error calling Linkup API:", error); | ||
throw new Error(`Failed to fetch data from Linkup API: ${error.message}`); | ||
} | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Version mismatch detected in answer action component
The version numbers are inconsistent across the Linkup component files:
components/linkup/actions/answer/answer.mjs
is at version "0.0.1"🔗 Analysis chain
Verify version consistency across files.
The version was updated from "0.0.1" to "0.1.1", skipping "0.1.0". Let's ensure version numbers are consistent across all related files.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 369