Files
BeWoPlaner/Shared/DataContracts/MikePHPContracts/AiMessageRequest.cs
2025-03-28 10:05:29 +01:00

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