Skip to content

Commit

Permalink
Fix module name (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshineplan authored Mar 10, 2024
1 parent b68ce7e commit 1a2910a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion chatgpt/chatgpt.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package chatgpt

import (
"ai"
"context"
"io"

"github.com/sunshineplan/ai"

"github.com/sashabaranov/go-openai"
"golang.org/x/time/rate"
)
Expand Down
3 changes: 2 additions & 1 deletion gemini/gemini.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package gemini

import (
"ai"
"context"
"io"
"strings"

"github.com/sunshineplan/ai"

"github.com/google/generative-ai-go/genai"
"golang.org/x/time/rate"
"google.golang.org/api/iterator"
Expand Down
3 changes: 2 additions & 1 deletion gemini/gemini_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package gemini

import (
"ai"
"context"
"fmt"
"io"
"os"
"testing"
"time"

"github.com/sunshineplan/ai"
)

func TestGemini(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ai
module github.com/sunshineplan/ai

go 1.22

Expand Down

0 comments on commit 1a2910a

Please sign in to comment.