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()`
```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] |
### 返回类型

@ -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),

Loading…
Cancel
Save