mirror of
https://github.com/ollama/ollama.git
synced 2026-09-21 13:55:04 +00:00
Remove the x/imagegen tree (MLX image generation engine, Flux2/zimage models, cache, C bindings) and all imagegen integration points: - server: drop imagegen routes, scheduling, and generate handling - api/cmd/docs: remove image generation API surface and docs - middleware/openai: remove image endpoint support - integration: remove imagegen test suites - x/create: adopt the rewritten create pipeline from main; drop imagegen create path (CreateImageGenModel, IsTensorModelDir, model_index.json detection, Flux2KleinPipeline vision hack) - retain x/imagegen/manifest (Ollama-store safetensors manifest loader), still used by x/mlxrunner and x/create/client - fix Windows MLX dl.dll install, MLX CMake version path, and the show command after removing safetensors models
33 lines
671 B
Go
33 lines
671 B
Go
package progress
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// StepBar displays step-based progress.
|
|
type StepBar struct {
|
|
message string
|
|
current int
|
|
total int
|
|
}
|
|
|
|
func NewStepBar(message string, total int) *StepBar {
|
|
return &StepBar{message: message, total: total}
|
|
}
|
|
|
|
func (s *StepBar) Set(current int) {
|
|
s.current = current
|
|
}
|
|
|
|
func (s *StepBar) String() string {
|
|
percent := float64(s.current) / float64(s.total) * 100
|
|
barWidth := s.total
|
|
empty := barWidth - s.current
|
|
|
|
// "Generating 0% ▕ ▏ 0/9"
|
|
return fmt.Sprintf("%s %3.0f%% ▕%s%s▏ %d/%d",
|
|
s.message, percent,
|
|
strings.Repeat("█", s.current), strings.Repeat(" ", empty),
|
|
s.current, s.total)
|
|
}
|