Users that try to pass a cloud bucket uri for the csv file to be indexed with the VectorStore.init() method can't do so because those types of path do not satisfy the os.path.exists check that only looks for local files.
Fixing this issue would involve:
- ammending this file check to allow cloud storage paths to be accepted,
- exploring how compatible cloud storage objects are with the existing classifai codebase that was originally designed for local filespace.
Users that try to pass a cloud bucket uri for the csv file to be indexed with the VectorStore.init() method can't do so because those types of path do not satisfy the os.path.exists check that only looks for local files.
Fixing this issue would involve: