File size: 178 Bytes
857a91b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package models

import "context"

// PreloadVLLM serves a model with vLLM. Stubbed for the MVP.
func PreloadVLLM(_ context.Context, _ string) error {
	return ErrNotImplemented
}