Add support for legacy v1/completions API (#12)

This commit is contained in:
Benson Wong
2024-11-19 09:56:41 -08:00
parent 21f54f96c2
commit ba39ed4c18

View File

@@ -32,6 +32,10 @@ func New(config *Config) *ProxyManager {
// Set up routes using the Gin engine
pm.ginEngine.POST("/v1/chat/completions", pm.proxyChatRequestHandler)
// Support legacy /v1/completions api, see issue #12
pm.ginEngine.POST("/v1/completions", pm.proxyChatRequestHandler)
pm.ginEngine.GET("/v1/models", pm.listModelsHandler)
// in proxymanager_loghandlers.go