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.native.llamamodelkvoverridetype.md 960 B

123456789101112131415161718192021222324
  1. # LLamaModelKvOverrideType
  2. Namespace: LLama.Native
  3. Specifies what type of value is being overridden by LLamaModelKvOverride
  4. ```csharp
  5. public enum LLamaModelKvOverrideType
  6. ```
  7. Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [ValueType](https://docs.microsoft.com/en-us/dotnet/api/system.valuetype) → [Enum](https://docs.microsoft.com/en-us/dotnet/api/system.enum) → [LLamaModelKvOverrideType](./llama.native.llamamodelkvoverridetype.md)<br>
  8. Implements [IComparable](https://docs.microsoft.com/en-us/dotnet/api/system.icomparable), [IFormattable](https://docs.microsoft.com/en-us/dotnet/api/system.iformattable), [IConvertible](https://docs.microsoft.com/en-us/dotnet/api/system.iconvertible)
  9. **Remarks:**
  10. llama_model_kv_override_type
  11. ## Fields
  12. | Name | Value | Description |
  13. | --- | --: | --- |
  14. | Int | 0 | Overriding an int value |
  15. | Float | 1 | Overriding a float value |
  16. | Bool | 2 | Overriding a bool value |