import React, { useState } from 'react'; import { Puzzle, Key, ExternalLink } from 'lucide-react'; interface PluginSettingsProps { settings: { wandb_api_key: string; }; setData: (data: any) => void; } export function PluginSettings({ settings, setData }: PluginSettingsProps) { const [showApiKey, setShowApiKey] = useState(false); return (
Track and visualize machine learning experiments
Your API key will be used to log metrics, artifacts, and experiment results