To use a custom base URL with the official OpenAI libraries, such as when routing requests through the Func Runner proxy, you can modify the base URL configuration in each language's library settings. Below are instructions for Python, Ruby, JavaScript, Go, and Java.
Python
To change the base URL in the Python OpenAI library, set the api_base attribute:
For Java, the base URL can be set when constructing the client with a custom baseUrl configuration:
import com.theokanning.openai.service.OpenAiService;
public class OpenAIExample {
public static void main(String[] args) {
String apiKey = "your-api-key";
String baseUrl = "https://<functionAppName>.azurewebsites.net/api/openai";
OpenAiService service = new OpenAiService(apiKey, baseUrl);
}
}
These instructions show how to set a custom base URL for various OpenAI libraries, allowing you to direct API requests through your Function App endpoint. Replace <functionAppName> with the actual name of your Azure Function App to reroute requests as needed.