mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
8 lines
130 B
Python
8 lines
130 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class EditResponse(BaseModel):
|
|
"""General response to an edit operation"""
|
|
|
|
message: str
|