Skip to content

Commit 9e4b334

Browse files
committed
Merge branch 'feat/sync-conversation-store-db' into staging
2 parents 25ea92d + adc0d08 commit 9e4b334

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

openhands/agenthub/codeact_agent/codeact_agent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,6 @@ async def _handle_streaming_response(
387387

388388
for action in actions:
389389
self.pending_actions.append(action)
390-
391390
if isinstance(action, AgentFinishAction):
392391
content = ''
393392
if action.task_completed == 'partial':

openhands/storage/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from openhands.storage.database import DatabaseFileStore
22
from openhands.storage.files import FileStore
33
from openhands.storage.google_cloud import GoogleCloudFileStore
4-
from openhands.storage.http import HTTPFileStore
54
from openhands.storage.local import LocalFileStore
65
from openhands.storage.memory import InMemoryFileStore
76
from openhands.storage.s3 import S3FileStore
@@ -16,10 +15,6 @@ def get_file_store(file_store: str, file_store_path: str | None = None) -> FileS
1615
return S3FileStore(file_store_path)
1716
elif file_store == 'google_cloud':
1817
return GoogleCloudFileStore(file_store_path)
19-
elif file_store == 'http':
20-
if file_store_path is None:
21-
raise ValueError('file_store_path is required for HTTP file store')
22-
return HTTPFileStore(file_store_path)
2318
elif file_store == 'database':
2419
return DatabaseFileStore()
2520
return InMemoryFileStore()

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)