Func Runner Help

Connecting Your Apps

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:

import openai openai.api_base = "https://<functionAppName>.azurewebsites.net/api/openai"

Ruby

In Ruby, you can modify the base URL by setting the api_base attribute of the OpenAI::Client:

require "openai" client = OpenAI::Client.new( api_base: "https://<functionAppName>.azurewebsites.net/api/openai", api_key: "your-api-key" )

JavaScript

For JavaScript (Node.js), adjust the basePath property when configuring the OpenAI client:

const { Configuration, OpenAIApi } = require("openai"); const configuration = new Configuration({ apiKey: "your-api-key", basePath: "https://<functionAppName>.azurewebsites.net/api/openai", }); const openai = new OpenAIApi(configuration);

Go

In Go, set the base URL using the BaseURL field when creating a new OpenAI client:

package main import ( openai "github.com/sashabaranov/go-openai" ) func main() { client := openai.NewClient("your-api-key") client.BaseURL = "https://<functionAppName>.azurewebsites.net/api/openai" }

Java

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.

Last modified: 17 December 2024