diff --git a/controller/channel-test.go b/controller/channel-test.go
index 070e6501..c0eab8a4 100644
--- a/controller/channel-test.go
+++ b/controller/channel-test.go
@@ -32,7 +32,6 @@ func testChannel(channel *model.Channel, request ChatRequest) error {
 		if channel.BaseURL != "" {
 			requestURL = channel.BaseURL
 		}
-		requestURL += "/api/chat-process"
 	} else {
 		if channel.BaseURL != "" {
 			requestURL = channel.BaseURL
diff --git a/controller/relay-text.go b/controller/relay-text.go
index 6f1d915e..13e0f793 100644
--- a/controller/relay-text.go
+++ b/controller/relay-text.go
@@ -121,8 +121,6 @@ func relayTextHelper(c *gin.Context, relayMode int) *OpenAIErrorWithStatusCode {
 	} else if channelType == common.ChannelTypeChatGPTWeb {
 		// remove /v1/chat/completions from request url
 		requestURL := strings.Split(requestURL, "/v1/chat/completions")[0]
-		requestURL += "/api/chat-process"
-
 		fullRequestURL = fmt.Sprintf("%s%s", baseURL, requestURL)
 	} else if channelType == common.ChannelTypePaLM {
 		err := relayPaLM(textRequest, c)