This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fs from "fs"; | |
import path from "path"; | |
import OpenAI from "openai"; | |
const openai = new OpenAI({ | |
apiKey: "", // Buraya API anahtarını ekle | |
}); | |
// Çevirmek istediğin metni buraya yaz | |
const textToConvert = " İşte buraya dönüştürülmesini istediğiniz metni yazın"; |