master
yangbowen 1 year ago
parent 1cf02f465a
commit 970ae7a69d
  1. 2
      .openapi-generator/api-doc-php-sdk.sha256
  2. 8
      docs/Api/AiApi.md
  3. 53
      lib/Api/AiApi.php

@ -1 +1 @@
8ddb52fb40c3511783f56cc9adf3407cbd17f68f1d980389999b4b0584c8e064 0c5880e732c3621788f8af1fba821f9109421b4bba5286510a9c7a61ce896acd

@ -62,7 +62,7 @@ try {
## `extractText()` ## `extractText()`
```php ```php
extractText($file, $file2, $param): \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult extractText($file, $param): \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult
``` ```
元梦ai-提取文件文本内容 元梦ai-提取文件文本内容
@ -83,11 +83,10 @@ $apiInstance = new OpenAPI\Client\Api\AiApi(
new GuzzleHttp\Client() new GuzzleHttp\Client()
); );
$file = "/path/to/file.txt"; // \SplFileObject $file = "/path/to/file.txt"; // \SplFileObject
$file2 = "/path/to/file.txt"; // \SplFileObject
$param = new \OpenAPI\Client\Model\ExtractTextParam(); // \OpenAPI\Client\Model\ExtractTextParam $param = new \OpenAPI\Client\Model\ExtractTextParam(); // \OpenAPI\Client\Model\ExtractTextParam
try { try {
$result = $apiInstance->extractText($file, $file2, $param); $result = $apiInstance->extractText($file, $param);
print_r($result); print_r($result);
} catch (Exception $e) { } catch (Exception $e) {
echo 'Exception when calling AiApi->extractText: ', $e->getMessage(), PHP_EOL; echo 'Exception when calling AiApi->extractText: ', $e->getMessage(), PHP_EOL;
@ -98,8 +97,7 @@ try {
| Name | Type | Description | Notes | | Name | Type | Description | Notes |
| ------------- | ------------- | ------------- | ------------- | | ------------- | ------------- | ------------- | ------------- |
| **file** | **\SplFileObject****\SplFileObject**| | | | **file** | **\SplFileObject****\SplFileObject**| | [optional] |
| **file2** | **\SplFileObject****\SplFileObject**| | [optional] |
| **param** | [**\OpenAPI\Client\Model\ExtractTextParam**](../Model/ExtractTextParam.md)| | [optional] | | **param** | [**\OpenAPI\Client\Model\ExtractTextParam**](../Model/ExtractTextParam.md)| | [optional] |
### 返回类型 ### 返回类型

@ -466,8 +466,7 @@ class AiApi
* *
* 元梦ai-提取文件文本内容 * 元梦ai-提取文件文本内容
* *
* @param \SplFileObject $file file (required) * @param \SplFileObject $file file (optional)
* @param \SplFileObject $file2 file2 (optional)
* @param \OpenAPI\Client\Model\ExtractTextParam $param param (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 * @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 * @throws \InvalidArgumentException
* @return \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult * @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; return $response;
} }
@ -486,8 +485,7 @@ class AiApi
* *
* 元梦ai-提取文件文本内容 * 元梦ai-提取文件文本内容
* *
* @param \SplFileObject $file (required) * @param \SplFileObject $file (optional)
* @param \SplFileObject $file2 (optional)
* @param \OpenAPI\Client\Model\ExtractTextParam $param (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 * @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 * @throws \InvalidArgumentException
* @return array of \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult, HTTP status code, HTTP response headers (array of strings) * @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 { try {
$options = $this->createHttpClientOption(); $options = $this->createHttpClientOption();
@ -604,17 +602,16 @@ class AiApi
* *
* 元梦ai-提取文件文本内容 * 元梦ai-提取文件文本内容
* *
* @param \SplFileObject $file (required) * @param \SplFileObject $file (optional)
* @param \SplFileObject $file2 (optional)
* @param \OpenAPI\Client\Model\ExtractTextParam $param (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 * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface * @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( ->then(
function ($response) { function ($response) {
return $response[0]; return $response[0];
@ -627,18 +624,17 @@ class AiApi
* *
* 元梦ai-提取文件文本内容 * 元梦ai-提取文件文本内容
* *
* @param \SplFileObject $file (required) * @param \SplFileObject $file (optional)
* @param \SplFileObject $file2 (optional)
* @param \OpenAPI\Client\Model\ExtractTextParam $param (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 * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
* @return \GuzzleHttp\Promise\PromiseInterface * @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'; $returnType = '\OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult';
$request = $this->extractTextRequest($file, $file2, $param, $contentType); $request = $this->extractTextRequest($file, $param, $contentType);
return $this->client return $this->client
->sendAsync($request, $this->createHttpClientOption()) ->sendAsync($request, $this->createHttpClientOption())
@ -679,24 +675,16 @@ class AiApi
/** /**
* Create request for operation 'extractText' * Create request for operation 'extractText'
* *
* @param \SplFileObject $file (required) * @param \SplFileObject $file (optional)
* @param \SplFileObject $file2 (optional)
* @param \OpenAPI\Client\Model\ExtractTextParam $param (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 * @param string $contentType The value for the Content-Type header. Check self::contentTypes['extractText'] to see the possible values for this operation
* *
* @throws \InvalidArgumentException * @throws \InvalidArgumentException
* @return \GuzzleHttp\Psr7\Request * @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 = ''; $httpBody = '';
$multipart = false; $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 // form params
if ($file2 !== null) { if ($file !== null) {
$multipart = true; $multipart = true;
$formParams['file'] = []; $formParams['file'] = [];
$paramFiles = is_array($file2) ? $file2 : [$file2]; $paramFiles = is_array($file) ? $file : [$file];
foreach ($paramFiles as $paramFile) { foreach ($paramFiles as $paramFile) {
$formParams['file'][] = \GuzzleHttp\Psr7\Utils::tryFopen( $formParams['file'][] = \GuzzleHttp\Psr7\Utils::tryFopen(
ObjectSerializer::toFormValue($paramFile), ObjectSerializer::toFormValue($paramFile),

Loading…
Cancel
Save