Minimax API Processor
Minimax API Processor
mLLMCelltype::BaseAPIProcessor
-> MinimaxProcessor
new()
Initialize Minimax processor
MinimaxProcessor$new(base_url = NULL)
base_url
Optional custom base URL for Minimax API
get_default_api_url()
Get default Minimax API URL
MinimaxProcessor$get_default_api_url()
Default Minimax API endpoint URL
make_api_call()
Make API call to Minimax
MinimaxProcessor$make_api_call(chunk_content, model, api_key)
chunk_content
Content for this chunk
model
Model identifier
api_key
API key
httr response object
extract_response_content()
Extract response content from Minimax API response
MinimaxProcessor$extract_response_content(response, model)
response
httr response object
model
Model identifier
Extracted text content
clone()
The objects of this class are cloneable with this method.
MinimaxProcessor$clone(deep = FALSE)
deep
Whether to make a deep clone.
Concrete implementation of BaseAPIProcessor for Minimax models. Handles Minimax-specific API calls, authentication, and response parsing.