Edward Louth
Edward Louth
I have been following the example here https://metriql.com/tutorial/for-starters When I run ``` curl -X POST -H "Content-Type: application/json" -d '{"type": "segmentation", "report": { "dataset": "source_metriql_tpch_customer", "dimensions": ["c_name"], "measures": ["total_rows"]}}' http://localhost:5656/api/v0/query...
To reproduce: 1. Add a source which uses a file, for example dbt or yaml file. 2. You should get a screen showing the run, as the file is processed....
Fixes for https://github.com/vanna-ai/vanna/issues/659 @andreped could you take a look?
**Describe the bug** I have setup pg_vector like so: ``` from vanna.pgvector import PG_VectorStore from vanna.openai import OpenAI_Chat class CustomVanna(PG_VectorStore, OpenAI_Chat): def __init__(self, config=None): PG_VectorStore.__init__(self, config=config) OpenAI_Chat.__init__(self, config=config) vn =...