From 970ae7a69d706a6b2d0273471938840dcaa78135 Mon Sep 17 00:00:00 2001 From: yangbowen Date: Sun, 7 Apr 2024 17:12:22 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .openapi-generator/api-doc-php-sdk.sha256 | 2 +- docs/Api/AiApi.md | 8 ++-- lib/Api/AiApi.php | 53 +++++++---------------- 3 files changed, 20 insertions(+), 43 deletions(-) diff --git a/.openapi-generator/api-doc-php-sdk.sha256 b/.openapi-generator/api-doc-php-sdk.sha256 index b9c957b..75b15ed 100644 --- a/.openapi-generator/api-doc-php-sdk.sha256 +++ b/.openapi-generator/api-doc-php-sdk.sha256 @@ -1 +1 @@ -8ddb52fb40c3511783f56cc9adf3407cbd17f68f1d980389999b4b0584c8e064 \ No newline at end of file +0c5880e732c3621788f8af1fba821f9109421b4bba5286510a9c7a61ce896acd \ No newline at end of file diff --git a/docs/Api/AiApi.md b/docs/Api/AiApi.md index 6bafd6d..b9fafe2 100644 --- a/docs/Api/AiApi.md +++ b/docs/Api/AiApi.md @@ -62,7 +62,7 @@ try { ## `extractText()` ```php -extractText($file, $file2, $param): \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult +extractText($file, $param): \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult ``` 元梦ai-提取文件文本内容 @@ -83,11 +83,10 @@ $apiInstance = new OpenAPI\Client\Api\AiApi( new GuzzleHttp\Client() ); $file = "/path/to/file.txt"; // \SplFileObject -$file2 = "/path/to/file.txt"; // \SplFileObject $param = new \OpenAPI\Client\Model\ExtractTextParam(); // \OpenAPI\Client\Model\ExtractTextParam try { - $result = $apiInstance->extractText($file, $file2, $param); + $result = $apiInstance->extractText($file, $param); print_r($result); } catch (Exception $e) { echo 'Exception when calling AiApi->extractText: ', $e->getMessage(), PHP_EOL; @@ -98,8 +97,7 @@ try { | Name | Type | Description | Notes | | ------------- | ------------- | ------------- | ------------- | -| **file** | **\SplFileObject****\SplFileObject**| | | -| **file2** | **\SplFileObject****\SplFileObject**| | [optional] | +| **file** | **\SplFileObject****\SplFileObject**| | [optional] | | **param** | [**\OpenAPI\Client\Model\ExtractTextParam**](../Model/ExtractTextParam.md)| | [optional] | ### 返回类型 diff --git a/lib/Api/AiApi.php b/lib/Api/AiApi.php index bc4ef6e..ee7519e 100644 --- a/lib/Api/AiApi.php +++ b/lib/Api/AiApi.php @@ -466,8 +466,7 @@ class AiApi * * 元梦ai-提取文件文本内容 * - * @param \SplFileObject $file file (required) - * @param \SplFileObject $file2 file2 (optional) + * @param \SplFileObject $file file (optional) * @param \OpenAPI\Client\Model\ExtractTextParam $param param (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation * @@ -475,9 +474,9 @@ class AiApi * @throws \InvalidArgumentException * @return \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult */ - public function extractText($file, $file2 = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) + public function extractText($file = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) { - list($response) = $this->extractTextWithHttpInfo($file, $file2, $param, $contentType); + list($response) = $this->extractTextWithHttpInfo($file, $param, $contentType); return $response; } @@ -486,8 +485,7 @@ class AiApi * * 元梦ai-提取文件文本内容 * - * @param \SplFileObject $file (required) - * @param \SplFileObject $file2 (optional) + * @param \SplFileObject $file (optional) * @param \OpenAPI\Client\Model\ExtractTextParam $param (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation * @@ -495,9 +493,9 @@ class AiApi * @throws \InvalidArgumentException * @return array of \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult, HTTP status code, HTTP response headers (array of strings) */ - public function extractTextWithHttpInfo($file, $file2 = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) + public function extractTextWithHttpInfo($file = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) { - $request = $this->extractTextRequest($file, $file2, $param, $contentType); + $request = $this->extractTextRequest($file, $param, $contentType); try { $options = $this->createHttpClientOption(); @@ -604,17 +602,16 @@ class AiApi * * 元梦ai-提取文件文本内容 * - * @param \SplFileObject $file (required) - * @param \SplFileObject $file2 (optional) + * @param \SplFileObject $file (optional) * @param \OpenAPI\Client\Model\ExtractTextParam $param (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function extractTextAsync($file, $file2 = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) + public function extractTextAsync($file = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) { - return $this->extractTextAsyncWithHttpInfo($file, $file2, $param, $contentType) + return $this->extractTextAsyncWithHttpInfo($file, $param, $contentType) ->then( function ($response) { return $response[0]; @@ -627,18 +624,17 @@ class AiApi * * 元梦ai-提取文件文本内容 * - * @param \SplFileObject $file (required) - * @param \SplFileObject $file2 (optional) + * @param \SplFileObject $file (optional) * @param \OpenAPI\Client\Model\ExtractTextParam $param (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Promise\PromiseInterface */ - public function extractTextAsyncWithHttpInfo($file, $file2 = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) + public function extractTextAsyncWithHttpInfo($file = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) { $returnType = '\OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult'; - $request = $this->extractTextRequest($file, $file2, $param, $contentType); + $request = $this->extractTextRequest($file, $param, $contentType); return $this->client ->sendAsync($request, $this->createHttpClientOption()) @@ -679,24 +675,16 @@ class AiApi /** * Create request for operation 'extractText' * - * @param \SplFileObject $file (required) - * @param \SplFileObject $file2 (optional) + * @param \SplFileObject $file (optional) * @param \OpenAPI\Client\Model\ExtractTextParam $param (optional) * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation * * @throws \InvalidArgumentException * @return \GuzzleHttp\Psr7\Request */ - public function extractTextRequest($file, $file2 = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) + public function extractTextRequest($file = null, $param = null, string $contentType = self::contentTypes['extractText'][0]) { - // verify the required parameter 'file' is set - if ($file === null || (is_array($file) && count($file) === 0)) { - throw new \InvalidArgumentException( - 'Missing the required parameter $file when calling extractText' - ); - } - @@ -707,23 +695,14 @@ class AiApi $httpBody = ''; $multipart = false; - // query params - $queryParams = array_merge($queryParams, ObjectSerializer::toQueryValue( - $file, - 'file', // param base name - 'string', // openApiType - 'form', // style - true, // explode - true // required - ) ?? []); // form params - if ($file2 !== null) { + if ($file !== null) { $multipart = true; $formParams['file'] = []; - $paramFiles = is_array($file2) ? $file2 : [$file2]; + $paramFiles = is_array($file) ? $file : [$file]; foreach ($paramFiles as $paramFile) { $formParams['file'][] = \GuzzleHttp\Psr7\Utils::tryFopen( ObjectSerializer::toFormValue($paramFile),