refactoring and clean up of chat cliet

This commit is contained in:
Storme-bit
2026-04-07 03:27:04 -07:00
parent 107ee5755e
commit 541e664da1
6 changed files with 43 additions and 30 deletions

View File

@@ -1,11 +1,5 @@
import React from 'react';
const MODELS = [
{ value: 'companion:latest', label: 'Companion' },
{ value: 'mistral-nemo:latest', label: 'Mistral Nemo' },
{ value: 'coder:latest', label: 'Coder' },
{ value: 'qwen2.5-coder:14b', label: 'Qwen 2.5 Coder 14B' },
];
import { MODELS } from '../config/constants';
export default function InfoPanel({ isOpen, onToggle, activeSession, lastModel, lastTokenCount, selectedModel, onModelChange }) {