Dagger
Search

helix

No long description provided.

Installation

dagger install github.com/helixml/runner@078d5d845d938384b0b5f7165a949f1cea224a71

Entrypoint

Return Type
Helix
Example
func (m *myModule) example() *Helix  {
	return dag.
			Helix()
}
@function
def example() -> dag.Helix:
	return (
		dag.helix()
	)
@func()
example(): Helix {
	return dag
		.helix()
}

Types

Helix 🔗

service() 🔗

Return Type
Service !
Arguments
NameTypeDefault ValueDescription
outputPathDirectory !-No description provided
Example
Function Helix.service is not accessible from the helix module
func (m *myModule) example(outputPath )   {
	return dag.
			Helix().
			Service(outputPath)
}
@function
def example(output_path: ) -> :
	return (
		dag.helix()
		.service(output_path)
	)
@func()
example(outputPath: ):  {
	return dag
		.helix()
		.service(outputPath)
}

client() 🔗

Return Type
Container !
Example
Function Helix.client is not accessible from the helix module
func (m *myModule) example()   {
	return dag.
			Helix().
			Client()
}
@function
def example() -> :
	return (
		dag.helix()
		.client()
	)
@func()
example():  {
	return dag
		.helix()
		.client()
}

generate() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
outputPathDirectory !-No description provided
promptStringKind !-No description provided
Example
Function Helix.generate is not accessible from the helix module
func (m *myModule) example(outputPath , prompt )   {
	return dag.
			Helix().
			Generate(outputPath, prompt)
}
@function
def example(output_path: , prompt: ) -> :
	return (
		dag.helix()
		.generate(output_path, prompt)
	)
@func()
example(outputPath: , prompt: ):  {
	return dag
		.helix()
		.generate(outputPath, prompt)
}

nvidiaSmi() 🔗

example usage: “dagger call nvidia-smi”

Return Type
StringKind !
Example
Function Helix.nvidiaSmi is not accessible from the helix module
func (m *myModule) example()   {
	return dag.
			Helix().
			NvidiaSmi()
}
@function
def example() -> :
	return (
		dag.helix()
		.nvidia_smi()
	)
@func()
example():  {
	return dag
		.helix()
		.nvidiaSmi()
}