Skip to content

Commit

Permalink
Merge pull request #91 from fitan/user-manager
Browse files Browse the repository at this point in the history
增加用户管理
  • Loading branch information
icowan authored Jun 5, 2024
2 parents b16ea4b + f6b6cd7 commit c2e261e
Show file tree
Hide file tree
Showing 16 changed files with 2,615 additions and 601 deletions.
21 changes: 11 additions & 10 deletions cmd/service/service_start.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ import (
"context"
"embed"
"fmt"
"io/fs"
"net"
"net/http"
"net/http/httputil"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
"time"

tiktoken2 "github.com/IceBearAI/aigc/src/helpers/tiktoken"
"github.com/IceBearAI/aigc/src/pkg/assistants"
"github.com/IceBearAI/aigc/src/pkg/auth"
Expand All @@ -22,16 +33,6 @@ import (
"github.com/igm/sockjs-go/v3/sockjs"
"github.com/pkoukk/tiktoken-go"
"github.com/tmc/langchaingo/llms/openai"
"io/fs"
"net"
"net/http"
"net/http/httputil"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
"time"

"github.com/go-kit/kit/tracing/opentracing"

Expand Down
Loading

0 comments on commit c2e261e

Please sign in to comment.