Skip to content

Commit 5fa8b2e

Browse files
Merge pull request #96 from dvonthenen/update-on-org-change
Update pkg paths for Org Change
2 parents f7fdfcd + da5487e commit 5fa8b2e

File tree

51 files changed

+137
-137
lines changed

Some content is hidden

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

51 files changed

+137
-137
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ go run async-file.go
6565

6666
### For the Streaming API (Real-Time) Example
6767

68-
The Streaming API (Real-Time) example makes use of a [microphone package](https://github.com/dvonthenen/symbl-go-sdk/tree/main/pkg/audio/microphone) contained within the repository. That package makes use of the [PortAudio library](http://www.portaudio.com/) which is a cross-platform open source audio library. If you are on Linux, you can install this library using whatever package manager is available (yum, apt, etc.) on your operating system. If you are on macOS, you can install this library using [brew](https://brew.sh/).
68+
The Streaming API (Real-Time) example makes use of a [microphone package](https://github.com/symblai/symbl-go-sdk/tree/main/pkg/audio/microphone) contained within the repository. That package makes use of the [PortAudio library](http://www.portaudio.com/) which is a cross-platform open source audio library. If you are on Linux, you can install this library using whatever package manager is available (yum, apt, etc.) on your operating system. If you are on macOS, you can install this library using [brew](https://brew.sh/).
6969

7070
## Community
7171

@@ -83,7 +83,7 @@ This library is released under the [Apache 2.0 License][license]
8383
[management_api-docs]: https://docs.symbl.ai/docs/management-api
8484
[symbl_signup]: https://platform.symbl.ai/signup?utm_source=symbl&utm_medium=blog&utm_campaign=devrel&_ga=2.226597914.683175584.1662998385-1953371422.1659457591&_gl=1*mm3foy*_ga*MTk1MzM3MTQyMi4xNjU5NDU3NTkx*_ga_FN4MP7CES4*MTY2MzEwNDQyNi44Mi4xLjE2NjMxMDQ0MzcuMC4wLjA.
8585
[examples-folder]: examples/
86-
[issues]: https://github.com/dvonthenen/symbl-go-sdk/issues
87-
[pulls]: https://github.com/dvonthenen/symbl-go-sdk/pulls
86+
[issues]: https://github.com/symblai/symbl-go-sdk/issues
87+
[pulls]: https://github.com/symblai/symbl-go-sdk/pulls
8888
[license]: LICENSE
8989
[slack]: https://join.slack.com/t/symbldotai/shared_invite/zt-4sic2s11-D3x496pll8UHSJ89cm78CA

cli/cmd/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414

1515
klog "k8s.io/klog/v2"
1616

17-
microphone "github.com/dvonthenen/symbl-go-sdk/pkg/audio/microphone"
18-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
17+
microphone "github.com/symblai/symbl-go-sdk/pkg/audio/microphone"
18+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1919
)
2020

2121
func main() {

docs.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
Package provides Go library for extracting Asynchoronous and Real-Time conversation insights
77
on the Symbl.ai platform.
88
9-
GitHub repo: https://github.com/dvonthenen/symbl-go-sdk
10-
Go SDK Examples: https://github.com/dvonthenen/symbl-go-sdk/tree/main/examples
9+
GitHub repo: https://github.com/symblai/symbl-go-sdk
10+
Go SDK Examples: https://github.com/symblai/symbl-go-sdk/tree/main/examples
1111
1212
Symbl Platform API reference: https://docs.symbl.ai/reference
1313
@@ -18,6 +18,6 @@ The two main entry points are:
1818
package sdk
1919

2020
import (
21-
_ "github.com/dvonthenen/symbl-go-sdk/cli/cmd"
22-
_ "github.com/dvonthenen/symbl-go-sdk/pkg/client"
21+
_ "github.com/symblai/symbl-go-sdk/cli/cmd"
22+
_ "github.com/symblai/symbl-go-sdk/pkg/client"
2323
)

examples/async-file/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212

1313
prettyjson "github.com/hokaccha/go-prettyjson"
1414

15-
async "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1"
16-
interfaces "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1/interfaces"
17-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
15+
async "github.com/symblai/symbl-go-sdk/pkg/api/async/v1"
16+
interfaces "github.com/symblai/symbl-go-sdk/pkg/api/async/v1/interfaces"
17+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1818
)
1919

2020
func main() {

examples/async-text/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212

1313
prettyjson "github.com/hokaccha/go-prettyjson"
1414

15-
async "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1"
16-
interfaces "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1/interfaces"
17-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
15+
async "github.com/symblai/symbl-go-sdk/pkg/api/async/v1"
16+
interfaces "github.com/symblai/symbl-go-sdk/pkg/api/async/v1/interfaces"
17+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1818
)
1919

2020
func main() {

examples/async-url/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212

1313
prettyjson "github.com/hokaccha/go-prettyjson"
1414

15-
async "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1"
16-
interfaces "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1/interfaces"
17-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
15+
async "github.com/symblai/symbl-go-sdk/pkg/api/async/v1"
16+
interfaces "github.com/symblai/symbl-go-sdk/pkg/api/async/v1/interfaces"
17+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1818
)
1919

2020
func main() {

examples/audio/replay/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"os"
1313
"time"
1414

15-
streaming "github.com/dvonthenen/symbl-go-sdk/pkg/api/streaming/v1"
16-
replay "github.com/dvonthenen/symbl-go-sdk/pkg/audio/replay"
17-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
15+
streaming "github.com/symblai/symbl-go-sdk/pkg/api/streaming/v1"
16+
replay "github.com/symblai/symbl-go-sdk/pkg/audio/replay"
17+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1818
)
1919

2020
func main() {

examples/audio/text-to-speech/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"os"
1313
"time"
1414

15-
streaming "github.com/dvonthenen/symbl-go-sdk/pkg/api/streaming/v1"
16-
tts "github.com/dvonthenen/symbl-go-sdk/pkg/audio/text-to-speech"
17-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
15+
streaming "github.com/symblai/symbl-go-sdk/pkg/api/streaming/v1"
16+
tts "github.com/symblai/symbl-go-sdk/pkg/audio/text-to-speech"
17+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1818
)
1919

2020
func main() {

examples/bookmark-summary/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111

1212
"github.com/davecgh/go-spew/spew"
1313

14-
async "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1"
15-
interfaces "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1/interfaces"
16-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
14+
async "github.com/symblai/symbl-go-sdk/pkg/api/async/v1"
15+
interfaces "github.com/symblai/symbl-go-sdk/pkg/api/async/v1/interfaces"
16+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1717
)
1818

1919
func main() {

examples/bookmarks/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111

1212
"github.com/davecgh/go-spew/spew"
1313

14-
async "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1"
15-
interfaces "github.com/dvonthenen/symbl-go-sdk/pkg/api/async/v1/interfaces"
16-
symbl "github.com/dvonthenen/symbl-go-sdk/pkg/client"
14+
async "github.com/symblai/symbl-go-sdk/pkg/api/async/v1"
15+
interfaces "github.com/symblai/symbl-go-sdk/pkg/api/async/v1/interfaces"
16+
symbl "github.com/symblai/symbl-go-sdk/pkg/client"
1717
)
1818

1919
func main() {

0 commit comments

Comments
 (0)