- Removed commented-out header styles from styles.base.tcss and styles.tcss. - Added new styles for danger buttons and agent selection views in styles.base.tcss and styles.tcss. - Implemented AgentHomeView to manage agent actions and display metadata. - Created AgentSelectView for selecting agents with a new layout and functionality. - Added CreateAgentView for creating new agents with input validation. - Removed obsolete eval.py and replaced it with evaluation.py. - Developed GameSelectView for selecting games with a dynamic loading interface. - Introduced ModelSelectView for selecting models associated with agents. - Created SelectRunView for managing runs associated with agents. - Added SubmissionView and TrainingView for handling model training and submission processes. - Updated requirements.txt to include pyfiglet for ASCII art rendering.
10 lines
290 B
Python
10 lines
290 B
Python
from textual.screen import Screen
|
|
from textual.widgets import Static
|
|
from agentm.theme.palette import get_theme
|
|
|
|
palette = get_theme()
|
|
|
|
class SubmissionView(Screen):
|
|
def compose(self):
|
|
yield Static(f"[{palette.ACCENT}]Submission View Placeholder[/]", classes="centered_layout")
|