P0 fixes: - ModelError.Is(): use exact matching instead of substring contains() - shouldClearStickySession: add context param for cancellation/tracing P1 fixes: - TODO stubs: return 501 Not Implemented errors - validateInstanceSignature: deduplicate to shared validateCodeSignature() - Error messages: standardize to English only - http.go: remove pseudo if-else with duplicate branches
24 lines
535 B
Go
24 lines
535 B
Go
package openai_ws_v2
|
|
|
|
import "context"
|
|
|
|
// EntryInput 是 passthrough v2 数据面的入口参数。
|
|
type EntryInput struct {
|
|
Ctx context.Context
|
|
ClientConn FrameConn
|
|
UpstreamConn FrameConn
|
|
FirstClientMessage []byte
|
|
Options RelayOptions
|
|
}
|
|
|
|
// RunEntry 是 openai_ws_v2 包对外的统一入口。
|
|
func RunEntry(input EntryInput) (RelayResult, *RelayExit) {
|
|
return runCaddyStyleRelay(
|
|
input.Ctx,
|
|
input.ClientConn,
|
|
input.UpstreamConn,
|
|
input.FirstClientMessage,
|
|
input.Options,
|
|
)
|
|
}
|