What's Changed
* `mypy` fixes, using `singledispatch` to route model generation behavior by parkervg in https://github.com/parkervg/blendsql/pull/24
* Feature/infer options arg by parkervg in https://github.com/parkervg/blendsql/pull/25
* `TransformersVisionModel`, `ImageCaption` Ingredient, `default_model` behavior by parkervg and zvs08 in https://github.com/parkervg/blendsql/pull/26
Example demonstrating new features:
python
ingredients = {ImageCaption.from_args(model=vision_model), LLMMap}
res = blend(
query="""
SELECT "Name",
{{ImageCaption('parks::Image')}} as "Image Description",
{{
LLMMap(
question='Size in km2?',
context='parks::Area'
)
}} as "Size in km" FROM parks
WHERE "Location" = 'Alaska'
ORDER BY "Size in km" DESC LIMIT 1
""",
db=db,
default_model=text_model,
ingredients=ingredients,
)
**Full Changelog**: https://github.com/parkervg/blendsql/compare/v0.0.18...v0.0.19