Skip to content

Commit

Permalink
Use None as the default value for s3_endpoint_url in S3Reader (run-ll…
Browse files Browse the repository at this point in the history
…ama#12763)

use none as default
  • Loading branch information
Javtor authored and raghavdixit99 committed Apr 13, 2024
1 parent d0d49da commit c92edc3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## [0.1.6] - 2024-04-11

- Use `None` as the default value for `s3_endpoint_url`

## [0.1.5] - 2024-03-27

- Update `README.md` to include installation instructions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class S3Reader(BasePydanticReader):
aws_access_id: Optional[str] = None
aws_access_secret: Optional[str] = None
aws_session_token: Optional[str] = None
s3_endpoint_url: Optional[str] = "https://s3.amazonaws.com"
s3_endpoint_url: Optional[str] = None
custom_reader_path: Optional[str] = None

@classmethod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ license = "MIT"
maintainers = ["thejessezhang"]
name = "llama-index-readers-s3"
readme = "README.md"
version = "0.1.5"
version = "0.1.6"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
llama-index-core = "^0.10.1"
llama-index-readers-file = "^0.1.12"
s3fs = "^2024.3.0"
s3fs = "^2024.3.1"

[tool.poetry.group.dev.dependencies]
ipython = "8.10.0"
Expand Down

0 comments on commit c92edc3

Please sign in to comment.