last works ...

This commit is contained in:
2026-04-30 12:01:56 +03:30
parent 2b5e09912f
commit f7184c7b79
3 changed files with 210 additions and 10 deletions
+31
View File
@@ -0,0 +1,31 @@
using Microsoft.AspNetCore.Mvc;
using xModels.Base;
namespace xAiApi.AI.Models.Dtos
{
/// <summary>
/// Ai Ask Request Data Transfer Object ...
/// </summary>
public class XAiAskRequestDto : XBaseDto
{
/// <summary>
/// Provided Prompt for Ask ...
/// </summary>
[FromQuery]
public string Prompt { get; set; }
/// <summary>
/// Ai Selected Project Id, Optional ...
/// if null, Use Default Project for Authenticated User ...
/// </summary>
[FromQuery]
public string ProjectId { get; set; } = null;
/// <summary>
/// Ai Selected Conversation of Project, Optional ...
/// if null, Create new Conversation in Selected Project ...
/// </summary>
[FromQuery]
public string ConversationId { get; set; } = null;
}
}