Nested Conversation Support (#8588)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Robert Brennan <contact@rbren.io>
This commit is contained in:
tofarr
2025-05-21 15:17:30 -06:00
committed by GitHub
parent 70573dcbc0
commit a3d1a92353
20 changed files with 842 additions and 208 deletions

View File

@@ -1,6 +1,7 @@
from pydantic import Field
from openhands.integrations.provider import CUSTOM_SECRETS_TYPE, PROVIDER_TOKEN_TYPE
from openhands.integrations.service_types import ProviderType
from openhands.storage.data_models.settings import Settings
@@ -15,6 +16,7 @@ class ConversationInitData(Settings):
replay_json: str | None = Field(default=None)
selected_branch: str | None = Field(default=None)
conversation_instructions: str | None = Field(default=None)
git_provider: ProviderType | None = Field(default=None)
model_config = {
'arbitrary_types_allowed': True,