mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-06-23 02:36:49 +08:00
- Introduced a Go-based plugin `codex-service-tier` for normalizing requests to Codex. - Added functionality to set `service_tier` to `priority` for `gpt-5.5` requests when `fast` mode is enabled. - Enhanced plugin capabilities with lifecycle configuration and request transformation support. - Updated documentation with configuration examples and usage instructions in multiple languages.
18 lines
429 B
Modula-2
18 lines
429 B
Modula-2
module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/codex-service-tier/go
|
|
|
|
go 1.26.0
|
|
|
|
require (
|
|
github.com/router-for-me/CLIProxyAPI/v7 v7.0.0
|
|
github.com/tidwall/sjson v1.2.5
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/tidwall/gjson v1.18.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
)
|
|
|
|
replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../..
|