nova-act
Basic Amazon Nova Act module
Installation
dagger install github.com/jpadams/nova-act@0f238a41936cc83aec49561f98aa742b5b8b4a50
Entrypoint
Return Type
NovaAct !
Example
dagger -m github.com/jpadams/nova-act@0f238a41936cc83aec49561f98aa742b5b8b4a50 call \
func (m *MyModule) Example() *dagger.NovaAct {
return dag.
NovaAct()
}
@function
def example() -> dagger.NovaAct:
return (
dag.nova_act()
)
@func()
example(): NovaAct {
return dag
.novaAct()
}
Types
NovaAct 🔗
search() 🔗
Container with nova-act enviro which has recorded session results
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
startingPage | String ! | - | No description provided |
assignment | String ! | - | No description provided |
apiKey | Secret ! | - | A reference to a secret value, which can be handled more safely than the value itself. |
Example
dagger -m github.com/jpadams/nova-act@0f238a41936cc83aec49561f98aa742b5b8b4a50 call \
search --starting-page string --assignment string --api-key env:MYSECRET
func (m *MyModule) Example(startingPage string, assignment string, apiKey *dagger.Secret) *dagger.Container {
return dag.
NovaAct().
Search(startingPage, assignment, apiKey)
}
@function
def example(starting_page: str, assignment: str, api_key: dagger.Secret) -> dagger.Container:
return (
dag.nova_act()
.search(starting_page, assignment, api_key)
)
@func()
example(startingPage: string, assignment: string, apiKey: Secret): Container {
return dag
.novaAct()
.search(startingPage, assignment, apiKey)
}