You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
low-carbon-platform-php/docs/Api/AiApi.md

4.5 KiB

OpenAPI\Client\AiApi

Method HTTP request Description
chat() POST /v1/ai/chat 元梦ai-对话
extractText() POST /v1/ai/extractText 元梦ai-提取上传文件的内容
tokenCount() POST /v1/ai/tokenCount 元梦ai-token统计

chat()

chat($chat_param): \OpenAPI\Client\Model\ResponseOpenAPIChatResult

元梦ai-对话

元梦ai对话

示例

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new OpenAPI\Client\Api\AiApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$chat_param = new \OpenAPI\Client\Model\ChatParam(); // \OpenAPI\Client\Model\ChatParam

try {
    $result = $apiInstance->chat($chat_param);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AiApi->chat: ', $e->getMessage(), PHP_EOL;
}

参数

Name Type Description Notes
chat_param \OpenAPI\Client\Model\ChatParam [optional]

返回类型

\OpenAPI\Client\Model\ResponseOpenAPIChatResult

HTTP请求头

  • Content-Type: application/json
  • Accept: */*

[回到顶部] [返回API列表] [返回模型列表] [返回README]

extractText()

extractText($file, $param): \OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult

元梦ai-提取上传文件的内容

提取上传文件的内容

示例

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new OpenAPI\Client\Api\AiApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$file = "/path/to/file.txt"; // \SplFileObject
$param = new \OpenAPI\Client\Model\ExtractTextParam(); // \OpenAPI\Client\Model\ExtractTextParam

try {
    $result = $apiInstance->extractText($file, $param);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AiApi->extractText: ', $e->getMessage(), PHP_EOL;
}

参数

Name Type Description Notes
file \SplFileObject**\SplFileObject** [optional]
param \OpenAPI\Client\Model\ExtractTextParam [optional]

返回类型

\OpenAPI\Client\Model\ResponseOpenAPIExtractTextResult

HTTP请求头

  • Content-Type: multipart/form-data
  • Accept: */*

[回到顶部] [返回API列表] [返回模型列表] [返回README]

tokenCount()

tokenCount($token_count_param): \OpenAPI\Client\Model\ResponseOpenAPITokensCountResult

元梦ai-token统计

元梦ai,token统计

示例

<?php
require_once(__DIR__ . '/vendor/autoload.php');



$apiInstance = new OpenAPI\Client\Api\AiApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$token_count_param = new \OpenAPI\Client\Model\TokenCountParam(); // \OpenAPI\Client\Model\TokenCountParam

try {
    $result = $apiInstance->tokenCount($token_count_param);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AiApi->tokenCount: ', $e->getMessage(), PHP_EOL;
}

参数

Name Type Description Notes
token_count_param \OpenAPI\Client\Model\TokenCountParam [optional]

返回类型

\OpenAPI\Client\Model\ResponseOpenAPITokensCountResult

HTTP请求头

  • Content-Type: application/json
  • Accept: */*

[回到顶部] [返回API列表] [返回模型列表] [返回README]