instantiate inference models

This commit is contained in:
Xi Yan 2024-09-19 21:33:35 -07:00
parent d2ec822b12
commit 7071c46422
6 changed files with 40 additions and 20 deletions

View file

@ -321,12 +321,10 @@ async def resolve_impls(
inner_specs=inner_specs,
)
for k, v in specs.items():
cprint(k, "blue")
cprint(v, "blue")
sorted_specs = topological_sort(specs.values())
cprint(f"sorted_specs={sorted_specs}", "red")
impls = {}
for spec in sorted_specs:
api = spec.api