You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
744 B
C#
28 lines
744 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OllamaStudy.Core
|
|
{
|
|
public class ModelSelecter
|
|
{
|
|
public const string ModelWithThinking = "qwen3:0.6b";
|
|
|
|
public const string ModelWithTool = "qwen3:0.6b";
|
|
|
|
public const string ModelWithVision = "qwen2.5vl:3b";
|
|
|
|
public const string ModelWithEmbedding = "all-minilm:latest";
|
|
|
|
public const string ModelWithToolAndThing = "qwen3:0.6b";
|
|
|
|
public const string ModelWithToolAndVersion = "granite3.2-vision:2b";
|
|
|
|
public const string ModelWithSuffixAndImage = "qwen2.5-coder:0.5b";
|
|
|
|
public const string ModelWithRawmodel = "llama3.2:1b";
|
|
}
|
|
}
|