30 lines
522 B
C#
30 lines
522 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Tests.Objects
|
|
{
|
|
public static class AiTestObjects
|
|
{
|
|
public static dynamic GetExampleSendRequest(string customerid, string request_id)
|
|
{
|
|
var payload = new
|
|
{
|
|
model = "gemma3:12b",
|
|
messages = new[] {
|
|
new {
|
|
role = "user",
|
|
message = "Say 'Hi'!"
|
|
}
|
|
},
|
|
customerid = customerid,
|
|
requestid = request_id
|
|
};
|
|
|
|
return payload;
|
|
}
|
|
}
|
|
}
|