Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

llama-index notebooks using gcsfs log errors to the cell output on colab #1768

Closed
axiomofjoy opened this issue Nov 16, 2023 · 2 comments
Closed

Comments

@axiomofjoy
Copy link
Contributor

axiomofjoy commented Nov 16, 2023

LlamaIndex notebooks using gcsfs log errors to the cell output on Colab. The notebooks themselves run, but the console message make it seem as though something has gone wrong.

Screenshot 2023-11-16 at 10 50 56 AM

This issue is caused by the fact that the Arize public assets bucket does not provide list permissions. A fix for this issue would involve:

  • creating our own isolated bucket so we can give list permissions to the public, or
  • suppressing the error log message

Originally posted by @axiomofjoy in #1766 (comment)

@axiomofjoy
Copy link
Contributor Author

axiomofjoy commented Nov 16, 2023

I've tried suppressing the message with

import warnings

with warnings.catch_warnings():
    warnings.simplefilter("ignore")  # or another action like "error", "always", etc.

but this was not successful. It will require a bit more investigation to identify the source of the issue.

@axiomofjoy
Copy link
Contributor Author

Duplicate of #2099

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

1 participant