Redouane Achouri
Redouane Achouri
Same issue on macOS. Running on a new terminal works. ```bash $ sw_vers ProductName: macOS ProductVersion: 12.2.1 BuildVersion: 21D62 $ gpg --version 2.2.34 $ git secret --version 0.4.0 ```
I noticed that when this happen, and if I keep using the same terminal session for other commands that take user input, pressing the enter button (return ⏎) prints out...
Hey, you can check your container logs with “docker logs …” to know what errors have been thrown by Elasticsearch. Best, Redouane On Wed, 19 Oct 2022 at 10:48 Amber...
@skvrd thanks for checking. Yes I'm using the exact same values (same context on a Jupyter notebook) as I shared in the bug description.
@skvrd, also the same credentials work fine with [LangChain's Confluence loader](https://github.com/langchain-ai/langchain/blob/master/libs/langchain/langchain/document_loaders/confluence.py): ```python from langchain_community.document_loaders import ConfluenceLoader loader = ConfluenceLoader( url='https://example.atlassian.net/wiki', username='[email protected]', api_key=CONFLUENCE_API_TOKEN, ) documents = loader.load( space_key='MY_SPACE', include_attachments=False, max_pages=50 )...
Great finding @skvrd , unsetting the environment variable actually solves it: ```python del os.environ['CONFLUENCE_API_TOKEN'] ``` ... but is this behaviour desirable? I guess priority should be given to ALL the...
Referring specifically to this snippet in the README: > If no credentials are specified, the loader will look for CONFLUENCE_API_TOKEN or CONFLUENCE_USERNAME/CONFLUENCE_PASSWORD environment variables to proceed with basic authentication.
@skvrd I'm proposing the following PR for fixing: https://github.com/run-llama/llama_index/pull/14905 cc @nerdai
Issue resolved in the release version `0.1.7` (https://github.com/run-llama/llama_index/pull/14905).
Had the same issue hosting on a VPS, as the doc points out, the media upload endpoint `LANGFUSE_S3_MEDIA_UPLOAD_ENDPOINT ` needs to be publicly accessible. See: 1. https://langfuse.com/self-hosting/deployment/infrastructure/blobstorage 2. https://langfuse.com/docs/observability/features/multi-modality What...