23 lines
445 B
PHP
23 lines
445 B
PHP
<?php
|
|
|
|
namespace App\Core;
|
|
|
|
use App\Services\InvoiceExtractionService;
|
|
|
|
class AIConfig
|
|
{
|
|
/**
|
|
* The model name preferred by the user
|
|
*/
|
|
public const MODEL_NAME = "gemini-flash-lite-latest";
|
|
|
|
/**
|
|
* Centralized prompt for invoice extraction
|
|
*/
|
|
public static function getExtractionPrompt(): string
|
|
{
|
|
$service = new InvoiceExtractionService();
|
|
return $service->buildExtractionPrompt();
|
|
}
|
|
}
|