types.go 312 B

12345678910
  1. package gpu
  2. // Beginning of an `ollama info` command
  3. type GpuInfo struct {
  4. Library string `json:"library,omitempty"`
  5. TotalMemory uint64 `json:"total_memory,omitempty"`
  6. FreeMemory uint64 `json:"free_memory,omitempty"`
  7. // TODO add other useful attributes about the card here for discovery information
  8. }