26 lines
518 B
C#
26 lines
518 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.MikePHPContracts
|
|
{
|
|
public class AiMessageRequest
|
|
{
|
|
[JsonProperty("mel")]
|
|
public string Model { get; set; }
|
|
|
|
[JsonProperty("stm")]
|
|
public string Context { get; set; }
|
|
|
|
[JsonProperty("pmt")]
|
|
public string Prompt { get; set; }
|
|
|
|
[JsonProperty("opt")]
|
|
public string Option { get; set; }
|
|
}
|
|
}
|