31 lines
642 B
C#
31 lines
642 B
C#
namespace LinkToolAddin.host.llm.entity
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
public partial class CommonInput
|
|
{
|
|
[JsonProperty("input")]
|
|
public Input Input { get; set; }
|
|
|
|
[JsonProperty("parameters")]
|
|
public Debug Parameters { get; set; }
|
|
|
|
[JsonProperty("debug")]
|
|
public Debug Debug { get; set; }
|
|
}
|
|
|
|
public partial class Debug
|
|
{
|
|
}
|
|
|
|
public partial class Input
|
|
{
|
|
[JsonProperty("prompt")]
|
|
public string Prompt { get; set; }
|
|
}
|
|
} |