forDevelopment method
Configure for development and testing
Settings optimized for development work with quick model loading and reasonable resource usage.
Implementation
OllamaBuilder forDevelopment() {
return numCtx(2048)
.numBatch(256)
.keepAlive("10m") // Quick unloading for testing
.numGpu(10); // Moderate GPU usage
}