Skip to content

Commit 7687079

Browse files
committed
snapshot
1 parent 5654d44 commit 7687079

File tree

10 files changed

+7
-4
lines changed

10 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,21 @@ jobs:
3131
- name: Set up Go
3232
uses: actions/setup-go@v5
3333
with:
34-
go-version-file: go.mod
34+
go-version-file: app/go.mod
3535
check-latest: true
3636
cache: true
3737

3838
- name: Show environment
39+
working-directory: app
3940
run: |
4041
go version
4142
go env GOOS GOARCH
4243
4344
- name: Build
45+
working-directory: app
4446
run: |
45-
mkdir -p dist
46-
GOFLAGS="-trimpath" go build -ldflags="-s -w" -o dist/gradient-engineer .
47+
mkdir -p ../dist
48+
GOFLAGS="-trimpath" go build -ldflags="-s -w" -o ../dist/gradient-engineer .
4749
4850
- name: Upload binary artifact
4951
uses: actions/upload-artifact@v4

go.mod renamed to app/go.mod

File renamed without changes.

go.sum renamed to app/go.sum

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

summarize.go renamed to app/summarize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type Summarizer struct {
2727
func NewSummarizer() *Summarizer {
2828
return &Summarizer{
2929
client: openai.NewClient(option.WithBaseURL("https://openrouter.ai/api/v1")),
30-
model: "openai/gpt-oss-120b:nitro",
30+
model: "openai/gpt-4.1",
3131
}
3232
}
3333

File renamed without changes.

ui.go renamed to app/ui.go

File renamed without changes.

playbooks

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
app/playbooks

0 commit comments

Comments
 (0)