28e53d90fc
- 统一 OpenAI 兼容 /v1 中继 + 渠道/额度/令牌/流水 - 各领域包:relay 模型网关、model 数据层、controller 管理 API
39 lines
909 B
Go
39 lines
909 B
Go
package dto
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/QuantumNous/new-api/relaykit/types"
|
|
)
|
|
|
|
// AlphaSearchRequest is the Codex standalone web search request.
|
|
// RawBody preserves the original JSON so unknown fields are forwarded intact.
|
|
type AlphaSearchRequest struct {
|
|
Model string `json:"model"`
|
|
Id string `json:"id,omitempty"`
|
|
Stream *bool `json:"stream,omitempty"`
|
|
RawBody json.RawMessage `json:"-"`
|
|
}
|
|
|
|
func (r *AlphaSearchRequest) GetTokenCountMeta() *types.TokenCountMeta {
|
|
combineText := ""
|
|
if len(r.RawBody) > 0 {
|
|
combineText = string(r.RawBody)
|
|
}
|
|
return &types.TokenCountMeta{
|
|
CombineText: combineText,
|
|
TokenType: types.TokenTypeTokenizer,
|
|
}
|
|
}
|
|
|
|
func (r *AlphaSearchRequest) IsStream(_ *http.Request) bool {
|
|
return false
|
|
}
|
|
|
|
func (r *AlphaSearchRequest) SetModelName(modelName string) {
|
|
if modelName != "" {
|
|
r.Model = modelName
|
|
}
|
|
}
|