This commit is contained in:
2026-04-10 23:50:46 +03:30
parent 9b271d1572
commit dc96e210e7
28 changed files with 6427 additions and 1287 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace xAiService.Interfaces
{
public interface IXAiServiceControllerBase
{
Task<ActionResult<string>> Ask(
[FromQuery] string prompt,
CancellationToken cancellationToken = default
);
}
}