shaoyongjun a50de57320 to:sync
2024-05-22 17:39:32 +08:00

13 lines
201 B
Go

package remote_http
import (
"context"
"fmt"
"testing"
)
func TestOpenRouter(t *testing.T) {
res, err := AiOpenRouter.Completions(context.Background(), "你好", "test")
fmt.Println(res, err)
}