Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion frontend/src/components/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,16 @@ export const MODEL_CONFIG: Record<string, ModelCfg> = {
},
"deepseek-r1-0528": {
displayName: "DeepSeek R1 0528 671B",
badges: ["Pro", "Beta"],
badges: ["Pro", "New"],
requiresPro: true,
tokenLimit: 130000
},
"gpt-oss-120b": {
displayName: "OpenAI GPT-OSS 120B",
badges: ["Pro", "New"],
requiresPro: true,
tokenLimit: 128000
},
"mistral-small-3-1-24b": {
displayName: "Mistral Small 3.1 24B",
badges: ["Pro"],
Expand Down Expand Up @@ -213,6 +219,8 @@ export function ModelSelector({
badgeClass += " bg-gradient-to-r from-purple-500/10 to-blue-500/10 text-purple-600";
} else if (badge === "Starter") {
badgeClass += " bg-gradient-to-r from-green-500/10 to-emerald-500/10 text-green-600";
} else if (badge === "New") {
badgeClass += " bg-gradient-to-r from-blue-500/10 to-cyan-500/10 text-blue-600";
} else if (badge === "Beta") {
badgeClass += " bg-gradient-to-r from-yellow-500/10 to-orange-500/10 text-yellow-600";
} else {
Expand Down
25 changes: 25 additions & 0 deletions frontend/src/config/pricingConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: false,
icon: <X className="w-4 h-4 text-red-500" />
},
{
text: "OpenAI GPT-OSS 120B",
included: false,
icon: <X className="w-4 h-4 text-red-500" />
},
{ text: "Gemma 3 27B", included: false, icon: <X className="w-4 h-4 text-red-500" /> },
{
text: "Mistral Small 3.1 24B",
Expand Down Expand Up @@ -86,6 +91,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: false,
icon: <X className="w-4 h-4 text-red-500" />
},
{
text: "OpenAI GPT-OSS 120B",
included: false,
icon: <X className="w-4 h-4 text-red-500" />
},
{
text: "Mistral Small 3.1 24B",
included: false,
Expand Down Expand Up @@ -122,6 +132,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{
text: "OpenAI GPT-OSS 120B",
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{ text: "Gemma 3 27B", included: true, icon: <Check className="w-4 h-4 text-green-500" /> },
{
text: "Mistral Small 3.1 24B",
Expand Down Expand Up @@ -173,6 +188,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{
text: "OpenAI GPT-OSS 120B",
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{ text: "Gemma 3 27B", included: true, icon: <Check className="w-4 h-4 text-green-500" /> },
{
text: "Mistral Small 3.1 24B",
Expand Down Expand Up @@ -233,6 +253,11 @@ export const PRICING_PLANS: PricingPlan[] = [
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{
text: "OpenAI GPT-OSS 120B",
included: true,
icon: <Check className="w-4 h-4 text-green-500" />
},
{ text: "Gemma 3 27B", included: true, icon: <Check className="w-4 h-4 text-green-500" /> },
{
text: "Mistral Small 3.1 24B",
Expand Down
Loading