()
| 180 | } |
| 181 | |
| 182 | func (e *CodexEngine) getOpenAIProxyProviderBaseURL() string { |
| 183 | // AWF exposes the OpenAI-compatible provider on the shared OpenAI/Responses |
| 184 | // gateway port (10000). |
| 185 | return "http://" + net.JoinHostPort(constants.AWFAPIProxyContainerIP, strconv.Itoa(constants.ClaudeLLMGatewayPort)) |
| 186 | } |
| 187 | |
| 188 | func (e *CodexEngine) renderAppendConvertedConfigWithoutOpenAIProxy(yaml *strings.Builder) { |
| 189 | yaml.WriteString(" awk '\n") |
no outgoing calls