mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08: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'}
|