Clasă SheetizeAI

Clasă SheetizeAI

Sheetize AI este un SDK .NET alimentat de AI care permite dezvoltatorilor și utilizatorilor avansați să creeze, să editeze și să analizeze foi de calcul.
public class SheetizeAI

Moștenire

object AI

Membri moșteniți

Exemple

[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);
    }
}

Metode

Generează text de rezumat pentru un fișier de tip foaie de calcul dat

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

Generează formulă Excel pentru un fișier de tip foaie de calcul dat

    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)

Răspunde la întrebări despre un fișier de tip foaie de calcul dat

    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)

Creează un nou fișier de tip foaie de calcul cu cerințe specificate

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

Modifică datele unui fișier de tip foaie de calcul existent

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

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

 Română