File size: 970 Bytes
3c665d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Zap, Brain } from 'lucide-react'
import { PromptEvolution } from './PromptEvolution'
import { PerformanceGraph } from './PerformanceGraph'

export function RightSidebar() {
  return (
    <div className="flex flex-col h-full overflow-y-auto">
      {/* GEPA Section */}
      <div className="p-4 border-b border-white/[0.06] shrink-0">
        <div className="flex items-center gap-2 text-[10px] font-semibold text-gray-500 uppercase tracking-widest mb-3">
          <Brain size={10} className="text-violet-400" />
          GEPA Prompt Evolution
        </div>
        <PromptEvolution />
      </div>

      {/* RL Charts */}
      <div className="p-4 flex-1 overflow-y-auto">
        <div className="flex items-center gap-2 text-[10px] font-semibold text-gray-500 uppercase tracking-widest mb-3">
          <Zap size={10} className="text-violet-400" />
          RL Learning Progress
        </div>
        <PerformanceGraph />
      </div>
    </div>
  )
}