You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you can see it (dynamic list, ordered by nb of providers, of the models) :
import g4f
all=[]
for model in g4f.models._all_models:
m=g4f.models.ModelUtils.convert[model]
o=m.best_provider
if o is None:
ll=[]
elif isinstance(o,g4f.providers.retry_provider.IterListProvider):
ll=o.providers
else:
ll=[o]
all.append( (m.name, m.base_provider, len(ll),[i.__name__ for i in ll]) )
all.sort(key=lambda x: -x[2])
for model,society,nb,providers in all:
print(nb,model,f"({society})",providers)
The text was updated successfully, but these errors were encountered:
"mixtral-8x22b" is gone ;-(
you can see it (dynamic list, ordered by nb of providers, of the models) :
The text was updated successfully, but these errors were encountered: