first commit: one-api base code + SAAS plan document
Some checks failed
CI / Unit tests (push) Has been cancelled
CI / commit_lint (push) Has been cancelled

This commit is contained in:
huangzhenpc
2025-12-29 22:52:27 +08:00
commit cb7c48bfa7
564 changed files with 61468 additions and 0 deletions

5
relay/constant/common.go Normal file
View File

@@ -0,0 +1,5 @@
package constant
var StopFinishReason = "stop"
var StreamObject = "chat.completion.chunk"
var NonStreamObject = "chat.completion"

View File

@@ -0,0 +1,5 @@
package finishreason
const (
Stop = "stop"
)

View File

@@ -0,0 +1,6 @@
package role
const (
System = "system"
Assistant = "assistant"
)