diff --git a/src/components/MCPGuideTab.tsx b/src/components/MCPGuideTab.tsx index cd81424..f7476b0 100644 --- a/src/components/MCPGuideTab.tsx +++ b/src/components/MCPGuideTab.tsx @@ -38,7 +38,7 @@ export const MCPGuideTab: React.FC = () => { const sseEventSourceRef = useRef(null); // Local Ollama / GPU Probe State - const [ollamaEndpoint, setOllamaEndpoint] = useState('http://localhost:11434'); + const [ollamaEndpoint, setOllamaEndpoint] = useState('http://10.30.20.128:11434'); const [probingOllama, setProbingOllama] = useState(false); const [probeResult, setProbeResult] = useState(null); @@ -593,7 +593,7 @@ main(); type="text" value={ollamaEndpoint} onChange={(e) => setOllamaEndpoint(e.target.value)} - placeholder="http://localhost:11434" + placeholder="http://10.30.20.128:11434" className="px-3 py-2 bg-slate-50 border border-slate-300 rounded-xl text-xs font-mono text-slate-800 w-48 sm:w-60 focus:outline-none focus:ring-2 focus:ring-emerald-500" />