Our ChatGPT API is designed to seamlessly integrate with your applications. To facilitate this integration, we provide a dedicated Apex class, ChatGPTRequest, to simplify the process of making requests to our API.

public class ChatGPTRequest {

	public List<Choices> choices;

	public class Choices {
		public String text;
	}

	
	public static ChatGPTRequest parse(String json) {
		return (ChatGPTRequest) System.JSON.deserialize(json, ChatGPTRequest.class);
	}
}

How to Use:

  1. Choices:

    • The choices variable represents a list of options you can provide for the ChatGPT API to consider in generating responses.
  2. Parsing Method:

    • The parse method is a utility to convert a JSON string into an instance of the ChatGPTRequest class, making it easier to handle API requests in your Salesforce environment.