You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$sampleText = "Lions are social animals, living in groups called prides, typically consisting of several females, their offspring, and a few males. Female lions are the primary hunters, working together to catch prey. Lions are known for their strength, teamwork, and complex social structures.";
@@ -135,7 +134,6 @@ Get intelligent suggestions for improving grammar, spelling, style, and overall
$sampleText = "Lions are the only cat that live in groups, called pride. A prides typically consists of a few adult males, several feales, and their offspring. This social structure is essential for hunting and raising young cubs. Female lions, or lionesses are the primary hunters of the prid. They work together in cordinated groups to take down prey usually targeting large herbiores like zbras, wildebeest and buffalo. Their teamwork and strategy during hunts highlight the intelligence and coperation that are key to their survival.";
@@ -175,7 +173,6 @@ Scan and moderate text content for unsafe, inappropriate, or policy-violating ma
@@ -208,7 +205,45 @@ For a full guide please refer to our step by step [Guide](https://docs.copyleaks
208
205
209
206
For a detailed understanding of the Text moderation process, refer to the Copyleaks text moderation Endpoint [Documentation](https://docs.copyleaks.com/reference/actions/text-moderation/check/)
210
207
##
211
-
## Further Resources
208
+
### AI Image Detection
209
+
Determine if a given image was generated or partially generated by an AI.
210
+
211
+
```php
212
+
<?php
213
+
require_once(__DIR__ . '/vendor/autoload.php');
214
+
215
+
use Copyleaks\Copyleaks;
216
+
use Copyleaks\CopyleaksAuthToken;
217
+
use Copyleaks\CopyleaksAiImageDetectionRequestModel;
218
+
use Copyleaks\CopyleaksAiImageDetectionResponseModel;
219
+
use Copyleaks\CopyleaksAiImageDetectionModels;
220
+
// --- Your Credentials ---
221
+
$EMAIL_ADDRESS = 'YOUR_EMAIL_ADDRESS';
222
+
$KEY = 'YOUR_API_KEY';
223
+
// --
224
+
225
+
// Read and encode your image file to base64
226
+
$imagePath = "path/to/your/image.jpg"; // Update this path to your actual image file
For a full guide please refer to our step by step [Guide](https://docs.copyleaks.com/guides/ai-detector/ai-image-detection/)
242
+
243
+
For a detailed understanding of the AI image detection process, refer to the Copyleaks AI image detection Endpoint [Documentation](https://docs.copyleaks.com/reference/actions/ai-image-detector/check/)
244
+
245
+
##
246
+
### Further Resources
212
247
213
248
***Copyleaks API Dashboard:** Manage your API keys, monitor usage, and view analytics from your personalized dashboard. [Access Dashboard](https://api.copyleaks.com/dashboard)
214
249
***Copyleaks SDK Documentation:** Explore comprehensive guides, API references, and code examples for seamless integration. [Read Documentation](https://docs.copyleaks.com/resources/sdks/overview/)
0 commit comments