Class SheetizeAI

Class SheetizeAI

Sheetize AI یک SDK .NET مبتنی بر هوش مصنوعی است که به توسعه‌دهندگان و کاربران پیشرفته امکان ایجاد، ویرایش و تحلیل صفحات‌گسترده را می‌دهد.
public class SheetizeAI

وراثت

object AI

اعضای به ارث‌برده‌شده

مثال‌ها

[C#]
public static class SheetizeAIExample
{
    private static string ApiKey = "";
    private static string ApiUrl = "https://llm.professionalize.com/v1/chat/completions";
    public async static Task ExampleBuildSpreadsheet()
    {
        Configuration.Model = Model.Recommended;
        SheetizeAI sheetizeAI = new SheetizeAI(ApiKey, true, ApiUrl);
        sheetizeAI.SetLicense("Sheetize.AI.lic");
        await sheetizeAI.BuildSpreadsheet("C:\\Shift_Work_Calendar.xlsx", "C:\\Shift_Work_Calendar_Modified.xlsx", "Change the value of cell A1 to Testing" , null);
    }
}

متدها

تولید متن خلاصه‌وار برای فایل صفحه‌گستردهٔ داده‌شده

public async Task SpreadsheetSummary(string filePath, TextWriter writer, string password = null)
public async Task<string> SpreadsheetSummary(string filePath, string password = null)

تولید فرمول اکسل برای فایل صفحه‌گستردهٔ داده‌شده

public async Task<string> GetExcelFormula(string filePath, string question, string password = null)
public async Task GetExcelFormula(string filePath, string question, TextWriter writer, string password = null)

پاسخ به سوالات دربارهٔ فایل صفحه‌گستردهٔ داده‌شده

public async Task SpreadsheetQuestion(string filePath, string question, TextWriter writer, string password = null)
public async Task<string> SpreadsheetQuestion(string filePath, string question, string password = null)

ایجاد فایل صفحه‌گستردهٔ جدید بر اساس نیازمندی‌ها

public async Task BuildSpreadsheet(string outputFilePath, string request, string password = null)

تغییر داده‌های یک فایل صفحه‌گسترده

public async Task BuildSpreadsheet(string filePath, string outputFilePath, string request, string password = null)

Namespace: Sheetize.AI | Assembly: Sheetize.AI.dll

 فارسی