Class MotorTranscriptFormatterRequest.Builder
java.lang.Object
com.chatmotorapi.api.transcription.MotorTranscriptFormatterRequest.Builder
- Enclosing class:
- MotorTranscriptFormatterRequest
public static class MotorTranscriptFormatterRequest.Builder extends Object
Builder class for
MotorSummaryRequest
.-
Constructor Summary
Constructors Constructor Description Builder()
Sets default values for the Request. -
Method Summary
Modifier and Type Method Description MotorTranscriptFormatterRequest.Builder
aiModel(String aiModel)
Sets the OpenAI model to use for the requestMotorTranscriptFormatterRequest
build()
Builds and returns aMotorTranscriptFormatterRequest
instance based on the set parameters.MotorTranscriptFormatterRequest.Builder
chatMotor(ChatMotor chatMotor)
Sets theChatMotor
instance for this request.MotorTranscriptFormatterRequest.Builder
filePath(String filePath)
Sets the file path for the text file to be processed.MotorTranscriptFormatterRequest.Builder
inputChunkSize(ChunkSize inputChunkSize)
Sets the input chunk size.MotorTranscriptFormatterRequest.Builder
motorAiOptions(MotorAiOptions aiOptions)
Sets the MotorAiOptions instance to be used for the request.
-
Constructor Details
-
Builder
public Builder()Sets default values for the Request.
-
-
Method Details
-
chatMotor
Sets theChatMotor
instance for this request.- Parameters:
chatMotor
- theChatMotor
instance- Returns:
- this builder instance for chaining
-
motorAiOptions
Sets the MotorAiOptions instance to be used for the request.- Parameters:
aiOptions
- the MotorAiOptions instance- Returns:
- this Builder instance for chaining
-
aiModel
Sets the OpenAI model to use for the request- Parameters:
aiModel
- the model identifier, e.g., "gpt-4"- Returns:
- this Builder instance for chaining
-
filePath
Sets the file path for the text file to be processed. Note: This method only accepts text files (txt, text, csv, and their uppercase equivalents). For other file formats, use theFileToTextConverter
utility to convert them to text files.- Parameters:
filePath
- the path to the text file- Returns:
- the builder instance for chaining
-
inputChunkSize
Sets the input chunk size.Note: This method is generally not recommended for use. The default chunk size defined in
ChatMotor.maxChunkInputSize()
is used.- Parameters:
inputChunkSize
- the input chunk size- Returns:
- this builder instance for chaining
-
build
Builds and returns aMotorTranscriptFormatterRequest
instance based on the set parameters.- Returns:
- a new
MotorTranscriptFormatterRequest
- Throws:
IllegalArgumentException
- if the chatMotor is not provided.IllegalArgumentException
- if the filePath is not provided.IllegalArgumentException
- if the file specified by filePath does not exist.
-