trustami/trustami-ai

Trustami.AI API的连接器。

1.0.4 2023-10-09 14:25 UTC

This package is not auto-updated.

Last update: 2024-09-23 18:47:21 UTC


README

此仓库旨在提供一个简单易用的Trustami.AI API连接器。

安装

composer require trustami/trustami-ai

使用方法

<?php

require 'vendor/autoload.php';

use Trustami\TrustamiAi\LangDetector;
use Trustami\TrustamiAi\Sentiment;
use Trustami\TrustamiAi\Summarizer;

$detector = new LangDetector("YOUR_TOKEN_HERE");

var_dump($detector->detect("This is a test text. It is used to test the Trustami.AI API.")); // string(2) "en"