- Add a new RunPod client to the project. - This client allows users to interact with the RunPod API to create and manage pods. - Includes example usage and configuration options.
33 lines
251 B
Markdown
33 lines
251 B
Markdown
# runpod
|
|
|
|
|
|
|
|
To get started
|
|
|
|
```vlang
|
|
|
|
|
|
|
|
import freeflowuniverse.crystallib.clients. runpod
|
|
|
|
mut client:= runpod.get()!
|
|
|
|
client...
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
## example heroscript
|
|
|
|
|
|
```hero
|
|
!!runpod.configure
|
|
secret: '...'
|
|
host: 'localhost'
|
|
port: 8888
|
|
```
|
|
|
|
|