File size: 8,140 Bytes
e1d8498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58e5ff2
e1d8498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58e5ff2
e1d8498
 
 
 
 
 
 
 
 
 
58e5ff2
 
e1d8498
 
 
 
 
 
 
 
 
 
 
58e5ff2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e1d8498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58e5ff2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
import { useState } from "react";
import {
  Copy, Check, Pencil, Trash2, ToggleLeft, ToggleRight,
  ChevronDown, ChevronUp, Terminal, Globe, Key
} from "lucide-react";
import { api } from "../api";

const TYPE_BADGE = {
  chat: "badge-green",
  embedding: "badge-cyan",
  image: "badge-purple",
  audio: "badge-orange",
  completion: "badge-gray",
};

export default function ModelCard({ model, onEdit, onDelete, onToggle }) {
  const [copied, setCopied] = useState(null);
  const [expanded, setExpanded] = useState(false);
  const [testing, setTesting] = useState(false);
  const [testResult, setTestResult] = useState(null);

  const copy = (text, key) => {
    navigator.clipboard.writeText(text);
    setCopied(key);
    setTimeout(() => setCopied(null), 1500);
  };

  const runTest = async () => {
    setTesting(true);
    setTestResult(null);
    try {
      const res = await api.testModel(model.id);
      setTestResult(res.data);
    } catch (e) {
      setTestResult({ success: false, error: e.message });
    } finally {
      setTesting(false);
    }
  };

  return (
    <div className={`card flex flex-col animate-slide-in transition-all duration-200 ${
      model.enabled ? "" : "opacity-50"
    }`}>
      <div className="p-4 flex items-start justify-between gap-3">
        <div className="min-w-0 flex-1">
          <div className="flex items-center gap-2 flex-wrap">
            <span className={`badge ${TYPE_BADGE[model.modelType] || "badge-gray"}`}>
              {model.modelType || "chat"}
            </span>
            <span className="badge badge-gray">{model.provider}</span>
            {!model.enabled && <span className="badge badge-gray">disabled</span>}
          </div>
          <h3 className="font-display font-semibold text-text-primary mt-2 text-sm leading-tight">
            {model.displayName}
          </h3>
          {model.description && (
            <p className="text-text-muted text-xs mt-1 leading-relaxed line-clamp-2">
              {model.description}
            </p>
          )}
        </div>
        <div className="flex items-center gap-1 flex-shrink-0">
          <button onClick={onToggle} title={model.enabled ? "Disable" : "Enable"}
            className="p-1.5 rounded text-text-muted hover:text-text-primary transition-colors">
            {model.enabled
              ? <ToggleRight size={16} className="text-accent-green" />
              : <ToggleLeft size={16} />
            }
          </button>
          <button onClick={onEdit}
            className="p-1.5 rounded text-text-muted hover:text-text-primary transition-colors">
            <Pencil size={14} />
          </button>
          <button onClick={onDelete}
            className="p-1.5 rounded text-text-muted hover:text-accent-red transition-colors">
            <Trash2 size={14} />
          </button>
        </div>
      </div>

      <hr className="divider" />

      <div className="p-4 space-y-2">
        <InfoRow
          icon={Globe}
          label="Endpoint"
          value={model.openaiEndpoint}
          onCopy={() => copy(model.openaiEndpoint, "endpoint")}
          copied={copied === "endpoint"}
          mono
        />
        <InfoRow
          icon={Terminal}
          label="Model Name"
          value={model.openaiModelName}
          onCopy={() => copy(model.openaiModelName, "model")}
          copied={copied === "model"}
          mono
          accent
        />
        {model.apiBase && (
          <InfoRow
            icon={Globe}
            label="Source API"
            value={model.apiBase}
            mono
          />
        )}
        <InfoRow
          icon={Key}
          label="API Key"
          value={model.apiKey ? "Configured v" : "Not required / None"}
          className={model.apiKey ? "text-accent-green" : "text-text-muted"}
        />
      </div>

      <div className="border-t border-white/5">
        <button
          onClick={() => setExpanded(e => !e)}
          className="w-full px-4 py-2.5 flex items-center justify-between text-xs
                     text-text-muted hover:text-text-secondary transition-colors"
        >
          <span>LiteLLM model: <span className="font-mono text-text-secondary">{model.litellmModel}</span></span>
          {expanded ? <ChevronUp size={12} /> : <ChevronDown size={12} />}
        </button>

        {expanded && (
          <div className="px-4 pb-4 space-y-3 animate-slide-in">
            <div>
              <div className="flex items-center justify-between mb-1.5">
                <span className="text-xs text-text-muted font-mono">curl</span>
                <button
                  onClick={() => copy(model.curlExample, "curl")}
                  className="text-text-muted hover:text-text-primary transition-colors"
                >
                  {copied === "curl" ? <Check size={12} className="text-accent-green" /> : <Copy size={12} />}
                </button>
              </div>
              <div className="code-block text-text-secondary text-[0.7rem] leading-relaxed max-h-32 overflow-y-auto">
                {model.curlExample}
              </div>
            </div>

            <div>
              <button
                onClick={runTest}
                disabled={testing || !model.enabled}
                className="btn-secondary w-full justify-center text-xs"
              >
                {testing ? (
                  <><RefreshCwIcon className="animate-spin" size={12} /> Testing...</>
                ) : "Run connectivity test"}
              </button>

              {testResult && (
                <div className={`mt-2 p-2 rounded text-xs font-mono border ${
                  testResult.success
                    ? "bg-accent-green/5 border-accent-green/20 text-accent-green"
                    : "bg-accent-red/5 border-accent-red/20 text-accent-red"
                }`}>
                  {testResult.success
                    ? "OK -- " + testResult.latencyMs + "ms"
                    : <ErrorDisplay error={testResult.error} />
                  }
                </div>
              )}
            </div>
          </div>
        )}
      </div>
    </div>
  );
}

function ErrorDisplay({ error }) {
  const [showFull, setShowFull] = useState(false);
  const text = typeof error === "string" ? error : JSON.stringify(error, null, 2);
  const LIMIT = 200;
  const isLong = text.length > LIMIT;

  return (
    <div>
      <span className="whitespace-pre-wrap break-all">
        {showFull ? text : text.slice(0, LIMIT)}
      </span>
      {isLong && (
        <button
          onClick={() => setShowFull(v => !v)}
          className="ml-1 underline text-accent-red/70 hover:text-accent-red"
        >
          {showFull ? "show less" : "...show full error"}
        </button>
      )}
    </div>
  );
}

function InfoRow({ icon: Icon, label, value, onCopy, copied, mono, accent, className }) {
  return (
    <div className="flex items-center gap-2 group">
      <Icon size={11} className="text-text-muted flex-shrink-0" />
      <span className="text-text-muted text-xs flex-shrink-0 w-20">{label}</span>
      <span className={`text-xs flex-1 truncate ${
        mono ? "font-mono" : ""
      } ${accent ? "text-accent-cyan" : "text-text-secondary"} ${className || ""}`}>
        {value}
      </span>
      {onCopy && (
        <button
          onClick={onCopy}
          className="opacity-0 group-hover:opacity-100 transition-opacity text-text-muted hover:text-text-primary flex-shrink-0"
        >
          {copied
            ? <Check size={11} className="text-accent-green" />
            : <Copy size={11} />
          }
        </button>
      )}
    </div>
  );
}

function RefreshCwIcon({ size, className }) {
  return (
    <svg width={size} height={size} viewBox="0 0 24 24" fill="none"
         stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"
         className={className}>
      <polyline points="23 4 23 10 17 10" />
      <polyline points="1 20 1 14 7 14" />
      <path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" />
    </svg>
  );
}