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.

RuntimeError.cs 287 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace LLama.Exceptions
  5. {
  6. public class RuntimeError: Exception
  7. {
  8. public RuntimeError()
  9. {
  10. }
  11. public RuntimeError(string message): base(message)
  12. {
  13. }
  14. }
  15. }

C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。