mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-01-07 22:14:03 -05:00
10 lines
201 B
Python
10 lines
201 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class CLIConfig(BaseModel):
|
|
"""Configuration for CLI-specific settings."""
|
|
|
|
vi_mode: bool = Field(default=False)
|
|
|
|
model_config = {'extra': 'forbid'}
|