You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

IInteractiveClient.cs 235 B

1234567891011
  1. using LLama.Web.Models;
  2. namespace LLama.Web.Hubs
  3. {
  4. public interface IInteractiveClient
  5. {
  6. Task OnStatus(string status);
  7. Task OnResponse(ResponseFragment fragment);
  8. Task OnError(string error);
  9. }
  10. }