-
Notifications
You must be signed in to change notification settings - Fork 78
feat: agentic payments v2 #266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 19 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
ad7b772
feat: improve actor tool output
MQ37 6baa662
Merge remote-tracking branch 'origin/master' into feat/improve-actor-…
MQ37 07035b0
update readme
MQ37 4a402d8
fix output tool, write test for that
MQ37 f207cc2
add test based on Zuzka suggestion
MQ37 4ff957e
lint
MQ37 a2bf3b5
fix output response order so LLM does not lose the instructions
MQ37 26c34cc
refactor: unify string list parsing logic
MQ37 3186c88
fix the tests - order of the Actor run response messages
MQ37 259831a
Update src/utils/schema-generation.ts
MQ37 863dd47
address review comments
MQ37 5501130
feat: agentci payments v2
MQ37 dde4fd2
add skyfire usage resource, fix skyfire pay id handling and passing t…
MQ37 83067b1
add skyfire instructions also to the call-actor info step result content
MQ37 07a8d19
Squashed commit of the following:
MQ37 eb9a159
Merge branch 'master' into feat/skyfire-payments-v2
MQ37 575f4cf
fix the port already in use issue with tests
MQ37 143833a
lint
MQ37 b9000e3
remove the try catch that was rethrowing generic error in callActorGe…
MQ37 6081fe8
add skyfire seller id and pay id to the get actor output
MQ37 6ae8a39
lint
MQ37 c24255c
rename env var
MQ37 784689e
include seller id conditionally in the instructions
MQ37 b02d4f5
handle skyfire pay id in get actor output
MQ37 c2015e3
change usd amount
MQ37 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
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.
This type of first level clone don't have any effect. Config object itself is not mutated.
This function mutates
config.headers, and the input config object is updated.Here is simple preview how it works

Use
structuredClonefor full clone. Or nothing if mutation is ok.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.
I just copied to logic from the add user agent header and it uses this exact logic. I dont quite get what is the issue exactly here? Is there any major flaw?