-
Notifications
You must be signed in to change notification settings - Fork 392
feat: skills for declarative agents #1077
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 all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
36b1958
very initial code sandbox. With some hardcoded WIP changes
yuval-k a36e29c
initial pull skills
yuval-k 0547d52
more updates & add test skill
yuval-k ee7eb99
fetch skills with crane
yuval-k 9aec2be
image name edge case
yuval-k 8b42700
declarative skills smoke test seems to work
yuval-k 02f938c
add e2e test + cleanups
yuval-k a6cbddf
updates translator tests. add code execution tests
yuval-k 4b120eb
cleanup
yuval-k a5fba86
PR feedback
yuval-k 2205b14
update translator tests
yuval-k 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
49 changes: 49 additions & 0 deletions
49
go/internal/controller/translator/agent/testdata/inputs/agent_with_code.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| operation: translateAgent | ||
| targetObject: agent-with-code | ||
| namespace: test | ||
| objects: | ||
| - apiVersion: v1 | ||
| kind: Secret | ||
| metadata: | ||
| name: openai-secret | ||
| namespace: test | ||
| data: | ||
| api-key: c2stdGVzdC1hcGkta2V5 # base64 encoded "sk-test-api-key" | ||
| - apiVersion: kagent.dev/v1alpha2 | ||
| kind: ModelConfig | ||
| metadata: | ||
| name: basic-model | ||
| namespace: test | ||
| spec: | ||
| provider: OpenAI | ||
| model: gpt-4o | ||
| apiKeySecret: openai-secret | ||
| apiKeySecretKey: api-key | ||
| openAI: | ||
| temperature: "0.7" | ||
| maxTokens: 1024 | ||
| topP: "0.95" | ||
| reasoningEffort: "low" | ||
| defaultHeaders: | ||
| User-Agent: "kagent/1.0" | ||
| - apiVersion: kagent.dev/v1alpha2 | ||
| kind: Agent | ||
| metadata: | ||
| name: agent-with-code | ||
| namespace: test | ||
| spec: | ||
| type: Declarative | ||
| declarative: | ||
| executeCodeBlocks: true | ||
| description: A basic test agent | ||
| systemMessage: You are a helpful assistant. | ||
| modelConfig: basic-model | ||
| deployment: | ||
| resources: | ||
| requests: | ||
| cpu: 200m | ||
| memory: 684Mi | ||
| limits: | ||
| cpu: 3000m | ||
| memory: 2Gi | ||
| tools: [] |
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.
by setting this to true here, are saying that if you add skills to the agent you'll always also need a sandbox? Are there agents with skills that won't need to execute code?
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.
there are skills that don't have code... but we don't know it ahead of time...