Skip to content

Commit fa97c54

Browse files
Merge pull request #90 from 73ai/migrate-to-73ai
Migrate module path to 73ai/openbotkit
2 parents b0f3def + 326267d commit fa97c54

File tree

266 files changed

+594
-594
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+594
-594
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
builds:
22
- binary: obk
33
env: [CGO_ENABLED=0]
4-
ldflags: -s -w -X github.com/priyanshujain/openbotkit/internal/cli.Version={{.Version}}
4+
ldflags: -s -w -X github.com/73ai/openbotkit/internal/cli.Version={{.Version}}
55
goos: [linux, darwin]
66
goarch: [amd64, arm64, riscv64]
77
ignore:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ AI agents can now read your email, send messages, and browse the web on your beh
5454
**macOS and Linux** (Windows is not supported):
5555

5656
```bash
57-
curl -fsSL https://raw.githubusercontent.com/priyanshujain/openbotkit/master/install.sh | sh
57+
curl -fsSL https://raw.githubusercontent.com/73ai/openbotkit/master/install.sh | sh
5858
```
5959

6060
<details>
@@ -63,7 +63,7 @@ curl -fsSL https://raw.githubusercontent.com/priyanshujain/openbotkit/master/ins
6363
Requires [Go 1.25+](https://go.dev/dl/).
6464

6565
```bash
66-
git clone https://github.com/priyanshujain/openbotkit.git
66+
git clone https://github.com/73ai/openbotkit.git
6767
cd openbotkit && make install
6868
```
6969
</details>

agent/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"log/slog"
77

8-
"github.com/priyanshujain/openbotkit/provider"
8+
"github.com/73ai/openbotkit/provider"
99
)
1010

1111
// ToolExecutor handles tool call execution.

agent/agent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"testing"
99

10-
"github.com/priyanshujain/openbotkit/provider"
10+
"github.com/73ai/openbotkit/provider"
1111
)
1212

1313
// mockProvider returns scripted responses in sequence.

agent/audit/audit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"time"
88

9-
"github.com/priyanshujain/openbotkit/store"
9+
"github.com/73ai/openbotkit/store"
1010
)
1111

1212
// Entry represents a single audit log record.

agent/audit/audit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/priyanshujain/openbotkit/store"
8+
"github.com/73ai/openbotkit/store"
99
)
1010

1111
func openTestDB(t *testing.T) *store.DB {

agent/compact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log/slog"
77
"strings"
88

9-
"github.com/priyanshujain/openbotkit/provider"
9+
"github.com/73ai/openbotkit/provider"
1010
)
1111

1212
const defaultMaxHistory = 40

agent/compact_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/priyanshujain/openbotkit/provider"
9+
"github.com/73ai/openbotkit/provider"
1010
)
1111

1212
func TestCompactHistory_BelowThreshold(t *testing.T) {

agent/provider_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/priyanshujain/openbotkit/agent"
12-
"github.com/priyanshujain/openbotkit/agent/tools"
13-
"github.com/priyanshujain/openbotkit/provider"
14-
"github.com/priyanshujain/openbotkit/provider/anthropic"
15-
"github.com/priyanshujain/openbotkit/provider/gemini"
16-
"github.com/priyanshujain/openbotkit/internal/testutil"
17-
"github.com/priyanshujain/openbotkit/provider/openai"
11+
"github.com/73ai/openbotkit/agent"
12+
"github.com/73ai/openbotkit/agent/tools"
13+
"github.com/73ai/openbotkit/provider"
14+
"github.com/73ai/openbotkit/provider/anthropic"
15+
"github.com/73ai/openbotkit/provider/gemini"
16+
"github.com/73ai/openbotkit/internal/testutil"
17+
"github.com/73ai/openbotkit/provider/openai"
1818
)
1919

2020
// providerTestCase holds a provider instance and model name for provider conformance tests.

agent/summarizer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/priyanshujain/openbotkit/provider"
8+
"github.com/73ai/openbotkit/provider"
99
)
1010

1111
const summarizePrompt = `Summarize the conversation below. Preserve: decisions made, user preferences, unresolved tasks, key facts. Omit: greetings, filler, verbose tool output. Keep under 2000 characters.`

0 commit comments

Comments
 (0)