-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrunpod.go
126 lines (104 loc) · 2.53 KB
/
runpod.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package image
import (
"bytes"
"context"
"encoding/base64"
"encoding/json"
"fmt"
"goirc/db/model"
db "goirc/model"
"net/http"
"os"
"strings"
)
type runpodResponse struct {
DelayTime int `json:"delayTime"`
ExecutionType int `json:"executionTime"`
ID string `json:"id"`
Output struct {
ImageURL string `json:"image_url"`
Images []string `json:"images"`
} `json:"output"`
Seed int `json:"seed"`
Status string `json:"status"`
}
func GenerateRunpod(ctx context.Context, prompt string) (*GeneratedImage, error) {
genResp, err := genRunpodImage(prompt)
if err != nil {
return nil, err
}
tx, err := db.DB.BeginTx(ctx, nil)
if err != nil {
return nil, err
}
defer tx.Rollback()
q := model.New(tx)
gi, err := q.CreateGeneratedImage(ctx, model.CreateGeneratedImageParams{
Prompt: prompt,
})
if err != nil {
return nil, err
}
err = os.MkdirAll(ImageFileBase, os.FileMode(0755))
if err != nil {
return nil, err
}
err = decodeDataURL(genResp.Output.ImageURL, fmt.Sprintf("%s/%d.png", ImageFileBase, gi.ID))
if err != nil {
return nil, err
}
err = tx.Commit()
if err != nil {
return nil, err
}
return &GeneratedImage{gi}, nil
}
func genRunpodImage(prompt string) (*runpodResponse, error) {
client := &http.Client{}
url := "https://api.runpod.ai/v2/rx6gph02422vep/runsync"
payload, err := json.Marshal(map[string]any{
"input": map[string]any{
"prompt": prompt,
},
})
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(payload))
if err != nil {
return nil, err
}
req.Header.Add("accept", "application/json")
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Bearer "+os.Getenv("RUNPOD_API_KEY"))
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return nil, fmt.Errorf("status %d", resp.StatusCode)
}
response := runpodResponse{}
err = json.NewDecoder(resp.Body).Decode(&response)
if err != nil {
return nil, err
}
return &response, nil
}
func decodeDataURL(dataURL, outputFilePath string) error {
parts := strings.SplitN(dataURL, ",", 2)
if len(parts) != 2 {
return fmt.Errorf("invalid data URL")
}
base64Data := parts[1]
binaryData, err := base64.StdEncoding.DecodeString(base64Data)
if err != nil {
return fmt.Errorf("error decoding base64 data: %v", err)
}
err = os.WriteFile(outputFilePath, binaryData, 0644)
if err != nil {
return fmt.Errorf("error writing to file: %v", err)
}
return nil
}