feat: add openai embedding service

This commit is contained in:
Abhishek Kumar 2026-01-17 13:36:26 +05:30
parent eb41285204
commit 3f0e500fde
39 changed files with 1902 additions and 339 deletions

View file

@ -133,9 +133,7 @@ class S3FileSystem(BaseFileSystem):
async with self.session.client(
"s3", region_name=self.region_name
) as s3_client:
await s3_client.download_file(
self.bucket_name, source_path, local_path
)
await s3_client.download_file(self.bucket_name, source_path, local_path)
return True
except ClientError:
return False