Skip to contents

Qwen API Processor

Qwen API Processor

Details

Concrete implementation of BaseAPIProcessor for Qwen models. Handles Qwen-specific API calls, authentication, and response parsing.

Super class

mLLMCelltype::BaseAPIProcessor -> QwenProcessor

Public fields

api_url

Qwen API endpoint URL

Methods

Inherited methods


Method new()

Initialize Qwen processor

Usage


Method make_api_call()

Make API call to Qwen

Usage

QwenProcessor$make_api_call(chunk_content, model, api_key)

Arguments

chunk_content

Content for this chunk

model

Model identifier

api_key

API key

Returns

httr response object


Method extract_response_content()

Extract response content from Qwen API response

Usage

QwenProcessor$extract_response_content(response, model)

Arguments

response

httr response object

model

Model identifier

Returns

Extracted text content


Method clone()

The objects of this class are cloneable with this method.

Usage

QwenProcessor$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.