feat: Upgrade model version to gpt-5.4 for category description generation and German to English translation

This commit is contained in:
sebseb7
2026-03-06 10:07:56 +01:00
parent 738db9b085
commit fb6c1159fe
2 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ const DIST_DIR = './dist';
const OUTPUT_CSV = './category-descriptions.csv';
// Model configuration
const MODEL = 'gpt-5.1';
const MODEL = 'gpt-5.4';
// Initialize OpenAI client
const openai = new OpenAI({
@@ -149,7 +149,7 @@ async function generateSEODescription(productListContent, categoryName, category
}
const response = await openai.responses.create({
model: "gpt-5.1",
model: "gpt-5.4",
input: [
{
"role": "developer",