Skip to content

Commit 4730602

Browse files
authored
Fix markdown syntax and remove captionless image
Updated headings to use proper markdown syntax and removed an unnecessary image.
1 parent 3b4e6d4 commit 4730602

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

blog/2023-08-20-ai-image-moderation-with-laravel-workflow.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ authors:
99
tags: [ai, image-moderation, workflow, automation]
1010
---
1111

12-
![captionless image](https://miro.medium.com/v2/resize:fit:1400/format:webp/1*Sz-f9McEdB5UIlr55GOjyw.png)
13-
1412
## Introduction
1513

1614
Before we begin, let’s understand the scenario. We are building an image moderation system where:
@@ -28,15 +26,15 @@ Laravel Workflow is designed to streamline and organize complex processes in app
2826

2927
ClarifAI provides AI-powered moderation tools for analyzing visual content. They offer a [free plan](https://www.clarifai.com/pricing) with up to 1,000 actions per month.
3028

31-
### 1. Store your credentials in `.env`.
29+
#### 1. Store your credentials in `.env`.
3230
```ini
3331
CLARIFAI_API_KEY=key
3432
CLARIFAI_APP=my-application
3533
CLARIFAI_WORKFLOW=my-workflow
3634
CLARIFAI_USER=username
3735
```
3836

39-
### 2. Add the service to `config/services.php`.
37+
#### 2. Add the service to `config/services.php`.
4038
```php
4139
'clarifai' => [
4240
'api_key' => env('CLARIFAI_API_KEY'),
@@ -46,7 +44,7 @@ CLARIFAI_USER=username
4644
],
4745
```
4846

49-
### 3. Create a service at `app/Services/ClarifAI.php`.
47+
#### 3. Create a service at `app/Services/ClarifAI.php`.
5048
```php
5149
namespace App\Services;
5250

0 commit comments

Comments
 (0)