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.

llama.common.illamalogger.md 578 B

12345678910111213141516171819202122232425262728
  1. # ILLamaLogger
  2. Namespace: LLama.Common
  3. ```csharp
  4. public interface ILLamaLogger
  5. ```
  6. ## Methods
  7. ### **Log(String, String, LogLevel)**
  8. Write the log in cosutomized way
  9. ```csharp
  10. void Log(string source, string message, LogLevel level)
  11. ```
  12. #### Parameters
  13. `source` [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  14. The source of the log. It may be a method name or class name.
  15. `message` [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  16. The message.
  17. `level` [LogLevel](./llama.common.illamalogger.loglevel.md)<br>
  18. The log level.

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