content = $content; $this->raw = $raw; $this->provider = $provider; $this->model = $model; $this->usage = $usage; $this->apiKeyId = $apiKeyId; } /** * 转为数组(落库 / 接口返回用) */ public function toArray(): array { return [ 'content' => $this->content, 'provider' => $this->provider, 'model' => $this->model, 'usage' => $this->usage, 'api_key_id' => $this->apiKeyId, ]; } }