namespace DocuMed.PWA.Services.RestServices;
public interface IAiRestApi
{
[Post("/chat")]
public Task<string> ChatAsync([Body]object request);
}