coding-agent
No long description provided.
Installation
dagger install github.com/kpenfound/kubesimplify-agent@66c0cb93615b6fc33c43df2d502da9665e24b417
Entrypoint
Return Type
CodingAgent
Example
dagger -m github.com/kpenfound/kubesimplify-agent@66c0cb93615b6fc33c43df2d502da9665e24b417 call \
func (m *myModule) example() *dagger.CodingAgent {
return dag.
CodingAgent()
}
@function
def example() -> dagger.CodingAgent:
return (
dag.coding_agent()
)
@func()
example(): CodingAgent {
return dag
.codingAgent()
}
Types
CodingAgent 🔗
goProgram() 🔗
Agent to create a go program
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
assignment | String ! | - | No description provided |
Example
no available example in current language
// Example for GoProgram function
func (m *Example) CodingAgentGoProgram() *dagger.Container {
return dag.CodingAgent().
GoProgram("Write a hello world program in Go") // Assignment for the coding agent
}
no available example in current language
/**
* Example for GoProgram function
*/
@func()
codingAgentGoProgram(): Container {
return dag.codingAgent()
.goProgram("Write a hello world program in Go")
}