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.

ILLamaParams.cs 339 B

1234567891011
  1. namespace LLama.Abstractions
  2. {
  3. /// <summary>
  4. /// Convenience interface for implementing both type of parameters.
  5. /// </summary>
  6. /// <remarks>Mostly exists for backwards compatibility reasons, when these two were not split.</remarks>
  7. public interface ILLamaParams
  8. : IModelParams, IContextParams
  9. {
  10. }
  11. }