Gaurav Tarlok Kakkar
Gaurav Tarlok Kakkar
- [x] Simplify the creation yolo based UDFs ``` CREATE UDF IF NOT EXISTS Yolo TYPE ultralytics 'model' 'yolov8m.pt'; ``` - [x] Speed up testing by using a smaller Yolo...
Supported query: ``` SELECT id, T.iids, T.bboxes, T.scores, T.labels FROM MyVideo JOIN LATERAL EXTRACT_OBJECT(data, YoloV5, NorFairTracker) AS T(iids, labels, bboxes, scores) WHERE id < 30; ```
Add logic to control the formatting of the response message. Using the pandas dataframe for the explain command does not work well.
UNNEST: #143 JOIN: TBD ARRAY_FUNCTIONs: TBD (https://www.postgresql.org/docs/8.4/functions-array.html) ``` -- GET frames with pedestrians SELECT id, frame FROM DETRAC WHERE ['pedestrain'] 0.5; -- GET bboxes of all red cars SELECT id,...
In the current setup, we cannot run multiple queries even though the `execute_async` returns control to the user immediately. We need the `execute_async` to return a future or an id...
### Search before asking - [X] I have searched the EvaDB [issues](https://github.com/georgia-tech-db/eva/issues) and found no similar feature requests. ### Description We want to add support for the documentation chat bot....
- [x] Add support for LLM in select as operator `SELECT DummyLLM({prompt}, data) FROM fruitTable;` - [ ] Provide LLM token usage and cost for the above queries.