We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, thank you for making this!
I have an issue using OpenAI's Text-3 Large embedding. The screen grays out completely each time it is loading smart_sources.
When using the debug mode, it pauses at this function:
var FileItemDataAdapter = class extends ItemDataAdapter { /** * @returns {Object} Filesystem interface derived from environment or collection settings. */ get fs() { return this.item.collection.data_fs || this.item.collection.env.data_fs; } get data_path() { throw new Error("Not implemented"); } async load_if_updated() { const data_path = this.data_path; if (await this.fs.exists(data_path)) { const loaded_at = this.item.loaded_at || 0; const data_file_stat = await this.fs.stat(data_path); if (data_file_stat.mtime > loaded_at + 1 * 60 * 1e3) { console.log(`Smart Collections: Re-loading item ${this.item.key} because it has been updated on disk`); await this.load(); } } } }
Do you know what the problem is? Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, thank you for making this!
I have an issue using OpenAI's Text-3 Large embedding. The screen grays out completely each time it is loading smart_sources.
![image](https://private-user-images.githubusercontent.com/38173379/402348059-38c3e383-75f8-4d1b-aa63-9975adaea8f4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyODM2MjYsIm5iZiI6MTczOTI4MzMyNiwicGF0aCI6Ii8zODE3MzM3OS80MDIzNDgwNTktMzhjM2UzODMtNzVmOC00ZDFiLWFhNjMtOTk3NWFkYWVhOGY0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDE0MTUyNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWNiNjIxNjM5MjQzZDM5M2I1MDA5ZmEyY2E2NTJjNDRiODk4NGVkMDMxZGIyM2I2ODUwNmM2MzAzYzA3OGRhY2YmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.1U0AWlRbvix4PHbb_Ux_n3tW0umFgVG3KJPFuyjuwYo)
When using the debug mode, it pauses at this function:
![image](https://private-user-images.githubusercontent.com/38173379/402354135-5a19834d-e3dc-45b8-b0f3-5a8e758572a9.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyODM2MjYsIm5iZiI6MTczOTI4MzMyNiwicGF0aCI6Ii8zODE3MzM3OS80MDIzNTQxMzUtNWExOTgzNGQtZTNkYy00NWI4LWIwZjMtNWE4ZTc1ODU3MmE5LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTElMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjExVDE0MTUyNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWMwYjM0YTA3OTNhZDlmYTNhNDY3MDk5MzJhZGYyMDg0OTk0ZTVjOTgwZDU4NTAzNDgxODUyYzVmOTI0YTMwZDImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.ppSLopvm6vC8104fK8yDZyVms84NS2_-Rq9QRUSaz9I)
Do you know what the problem is? Thank you!
The text was updated successfully, but these errors were encountered: