Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.25'
cache: true

- name: Set up Node.js
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.25'
cache: true

- name: Set up Node.js
Expand Down
14 changes: 7 additions & 7 deletions agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Workflow processing and response handling.
## Installation

```bash
go get github.com/threefoldtech/tfgrid-sdk-go/agent
go get github.com/threefoldtech/grid-agent/agent
```

## Quick Start
Expand All @@ -82,9 +82,9 @@ import (
"context"
"log"

"github.com/threefoldtech/tfgrid-sdk-go/agent/pkg/core"
"github.com/threefoldtech/tfgrid-sdk-go/agent/pkg/llm"
"github.com/threefoldtech/tfgrid-sdk-go/agent/pkg/tools/builtin"
"github.com/threefoldtech/grid-agent/agent/pkg/core"
"github.com/threefoldtech/grid-agent/agent/pkg/llm"
"github.com/threefoldtech/grid-agent/agent/pkg/tools/builtin"
)

func main() {
Expand Down Expand Up @@ -159,7 +159,7 @@ agent.RegisterTool(builtin.NewCommandToolWithStreaming(streamCallback))

```go
import (
"github.com/threefoldtech/tfgrid-sdk-go/agent/pkg/workflow"
"github.com/threefoldtech/grid-agent/agent/pkg/workflow"
)

// Create a response handler
Expand Down Expand Up @@ -225,7 +225,7 @@ import (
"context"
"fmt"

"github.com/threefoldtech/tfgrid-sdk-go/agent/pkg/tools"
"github.com/threefoldtech/grid-agent/agent/pkg/tools"
)

type MyCustomTool struct{}
Expand Down Expand Up @@ -393,6 +393,6 @@ For issues and questions:

## Related Projects

- [tfgrid-sdk-go](https://github.com/threefoldtech/tfgrid-sdk-go) - ThreeFold Grid SDK for Go
- [zos_sdk_go](https://github.com/threefoldtech/zos_sdk_go) - ThreeFold Grid SDK for Go
- [grid-cli](../grid-cli/) - ThreeFold Grid CLI tool
- [grid-agent-gui](../grid-agent-gui/) - Desktop GUI for the Grid Agent
4 changes: 2 additions & 2 deletions go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.24
go 1.25.0

toolchain go1.24.2
toolchain go1.25.0

use (
./agent
Expand Down
4 changes: 2 additions & 2 deletions grid-agent-gui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@ Contributions are welcome! Please ensure:

## License

This project is part of the [tfgrid-sdk-go](https://github.com/threefoldtech/tfgrid-sdk-go) repository.
This project is part of the [grid_agent](https://github.com/threefoldtech/grid_agent) repository.

## Support

For issues and questions:
- GitHub Issues: https://github.com/threefoldtech/tfgrid-sdk-go/issues
- GitHub Issues: https://github.com/threefoldtech/grid_agent/issues
- ThreeFold Forum: https://forum.threefold.io/

## Credits
Expand Down
4 changes: 2 additions & 2 deletions grid-agent-gui/build/grid-agent-gui.desktop
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[Desktop Entry]
Name=ThreeFold Grid Agent
Comment=AI-powered assistant for ThreeFold Grid
Exec=/home/sameh/Projects/tfgrid-sdk-go/grid-agent-gui/build/bin/grid-agent-gui
Icon=/home/sameh/Projects/tfgrid-sdk-go/grid-agent-gui/build/appicon.png
Exec=/home/sameh/Projects/grid_agent/grid-agent-gui/build/bin/grid-agent-gui
Icon=/home/sameh/Projects/grid_agent/grid-agent-gui/build/appicon.png
Terminal=false
Type=Application
Categories=Utility;Development;
Expand Down
58 changes: 29 additions & 29 deletions grid-agent-gui/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/threefoldtech/grid-agent/grid-agent-gui

go 1.24

toolchain go1.24.2
go 1.25.0

require (
github.com/spf13/cobra v1.9.1
Expand All @@ -16,25 +14,26 @@ require (
require (
cloud.google.com/go v0.121.1 // indirect
cloud.google.com/go/auth v0.16.5 // indirect
cloud.google.com/go/compute/metadata v0.8.0 // indirect
cloud.google.com/go/compute/metadata v0.9.0 // indirect
filippo.io/edwards25519 v1.2.0 // indirect
github.com/ChainSafe/go-schnorrkel v1.1.0 // indirect
github.com/bep/debounce v1.2.1 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/centrifuge/go-substrate-rpc-client/v4 v4.0.12 // indirect
github.com/centrifuge/go-substrate-rpc-client/v4 v4.2.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cosmos/go-bip39 v1.0.0 // indirect
github.com/deckarep/golang-set v1.8.0 // indirect
github.com/decred/base58 v1.0.5 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
github.com/decred/base58 v1.0.6 // indirect
github.com/decred/dcrd/crypto/blake256 v1.1.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/ethereum/go-ethereum v1.11.6 // indirect
github.com/ethereum/go-ethereum v1.17.1 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/getsentry/sentry-go v0.29.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/gomodule/redigo v2.0.0+incompatible // indirect
Expand All @@ -46,10 +45,10 @@ require (
github.com/gorilla/schema v1.4.1 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/gtank/merlin v0.1.1 // indirect
github.com/gtank/ristretto255 v0.1.2 // indirect
github.com/gtank/ristretto255 v0.2.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/holiman/uint256 v1.2.3 // indirect
github.com/holiman/uint256 v1.3.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jbenet/go-base58 v0.0.0-20150317085156-6237cf65f3a6 // indirect
github.com/jchv/go-winloader v0.0.0-20210711035445-715c2860da7e // indirect
Expand All @@ -66,36 +65,37 @@ require (
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rs/cors v1.10.1 // indirect
github.com/rs/cors v1.11.1 // indirect
github.com/rs/zerolog v1.34.0 // indirect
github.com/samber/lo v1.49.1 // indirect
github.com/threefoldtech/tfchain/clients/tfchain-client-go v0.0.0-20250929084418-b950278ead30 // indirect
github.com/threefoldtech/tfgrid-sdk-go/grid-client v0.17.5 // indirect
github.com/threefoldtech/tfgrid-sdk-go/grid-proxy v0.17.5 // indirect
github.com/threefoldtech/tfgrid-sdk-go/rmb-sdk-go v0.17.5 // indirect
github.com/threefoldtech/zosbase v1.0.4 // indirect
github.com/threefoldtech/tfchain/clients/tfchain-client-go v0.0.0-20260302124210-526158ffbc00 // indirect
github.com/threefoldtech/zos_base v1.1.0 // indirect
github.com/threefoldtech/zos_sdk_go/grid-client v0.18.0 // indirect
github.com/threefoldtech/zos_sdk_go/grid-proxy v0.18.0 // indirect
github.com/threefoldtech/zos_sdk_go/rmb-sdk-go v0.18.0 // indirect
github.com/tkrajina/go-reflector v0.5.8 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vedhavyas/go-subkey v1.0.3 // indirect
github.com/vedhavyas/go-subkey/v2 v2.0.0 // indirect
github.com/wailsapp/go-webview2 v1.0.22 // indirect
github.com/wailsapp/mimetype v1.4.1 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
go.opentelemetry.io/otel v1.36.0 // indirect
go.opentelemetry.io/otel/metric v1.36.0 // indirect
go.opentelemetry.io/otel/trace v1.36.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
go.opentelemetry.io/otel v1.39.0 // indirect
go.opentelemetry.io/otel/metric v1.39.0 // indirect
go.opentelemetry.io/otel/trace v1.39.0 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/text v0.28.0 // indirect
golang.org/x/net v0.51.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.35.0 // indirect
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20200609130330-bd2cb7843e1b // indirect
gonum.org/v1/gonum v0.16.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
google.golang.org/grpc v1.74.2 // indirect
google.golang.org/protobuf v1.36.7 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b // indirect
google.golang.org/grpc v1.77.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
)

Expand Down
Loading