You can use third-party ML/AI libraries in Databricks GenAI by installing them on your cluster or notebook (%pip install library-name), importing them in your code, and then integrating their outputs into your GenAI workflows. For large models, use a...
Hi @VRaj, removing the ADLS path from a metastore won’t delete existing data, but any references to that path for catalog creation will fail. To prevent cross-project storage charges, you could create separate metastores per project or use access con...
Hi Steph, it sounds like the Knowledge Assistant requires a serverless budget policy linked to your premium account. If it’s not showing in admin settings, it’s often a region/configuration issue. I’d recommend:Double-check that your East US account ...
The Lakebridge analyzer counts DDL statements, not regular queries. A simple SELECT * is DML, not DDL, so it won’t show up in the DDL count.To get meaningful results for SnowSQL code analysis:Include actual DDL statements like CREATE TABLE, ALTER TAB...
The issue happens because SQLDatabase.from_databricks doesn’t automatically fetch column metadata from Unity Catalog tables in some LangChain versions, leading to malformed SELECT statements. A workaround is to manually query the catalog like you did...