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 docs/ops/sdk-release-runbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This runbook covers SynapseNetwork SDK package publishing. SDKs are **published*
| --- | --- | --- | --- |
| Python | `synapse-client` | PyPI | Optional TestPyPI dry-run before public release. |
| TypeScript | `@synapse-network/sdk` | npm | Use npm dist-tags such as `preview`, `next`, or `latest`. |
| Go | `github.com/cliff-personal/Synapse-Network-Sdk/go` | Go module via GitHub | Because the module is in `/go`, tags must use `go/vX.Y.Z`. |
| Go | `github.com/SynapseNetworkAI/Synapse-Network-Sdk/go` | Go module via GitHub | Because the module is in `/go`, tags must use `go/vX.Y.Z`. |
| Java | `ai.synapsenetwork:synapse-network-sdk` | Maven Central | If Central is not ready, publish preview artifacts to GitHub Packages Maven. |
| .NET | `SynapseNetwork.Sdk` | NuGet.org | Use NuGet package versions and never overwrite an existing version. |
| All | GitHub Release | GitHub | One release page per train with links to all language packages. |
Expand Down Expand Up @@ -107,7 +107,7 @@ Registry credentials must stay in GitHub Actions secrets. Do not store them in S
The Go module lives in a subdirectory:

```text
go/go.mod -> module github.com/cliff-personal/Synapse-Network-Sdk/go
go/go.mod -> module github.com/SynapseNetworkAI/Synapse-Network-Sdk/go
```

Therefore Go package publishing uses subdirectory tags:
Expand Down
4 changes: 2 additions & 2 deletions docs/sdk/go_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Go SDK supports the full public Synapse SDK surface: `SynapseClient` agent r
The preview module lives in this monorepo:

```bash
go get github.com/cliff-personal/Synapse-Network-Sdk/go
go get github.com/SynapseNetworkAI/Synapse-Network-Sdk/go
```

## Fixed-Price API Invoke
Expand All @@ -20,7 +20,7 @@ import (
"fmt"
"os"

synapse "github.com/cliff-personal/Synapse-Network-Sdk/go/synapse"
synapse "github.com/SynapseNetworkAI/Synapse-Network-Sdk/go/synapse"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/examples/e2e/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

synapse "github.com/cliff-personal/Synapse-Network-Sdk/go/synapse"
synapse "github.com/SynapseNetworkAI/Synapse-Network-Sdk/go/synapse"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go/examples/free_service_smoke/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

synapse "github.com/cliff-personal/Synapse-Network-Sdk/go/synapse"
synapse "github.com/SynapseNetworkAI/Synapse-Network-Sdk/go/synapse"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/examples/llm_smoke/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

synapse "github.com/cliff-personal/Synapse-Network-Sdk/go/synapse"
synapse "github.com/SynapseNetworkAI/Synapse-Network-Sdk/go/synapse"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cliff-personal/Synapse-Network-Sdk/go
module github.com/SynapseNetworkAI/Synapse-Network-Sdk/go

go 1.22

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/cliff-personal/Synapse-Network-Sdk</url>
<url>https://maven.pkg.github.com/SynapseNetworkAI/Synapse-Network-Sdk</url>
</repository>
</distributionManagement>

Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e/sdk_parity_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ import (
"fmt"
"os"

synapse "github.com/cliff-personal/Synapse-Network-Sdk/go/synapse"
synapse "github.com/SynapseNetworkAI/Synapse-Network-Sdk/go/synapse"
)

func main() {
Expand Down
Loading