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
Why do I generate the same response for the same message?
I figured out the images, I needed to register the seed. And in terms of text models, how can I apply randomization?
Where can I completely see all the parameters that I can apply to text generation?
Here's my code:
from g4f.client import Client as G4fClient
from g4f.Provider import DDG, Blackbox, IterListProvider
Provider parameters are accessible via print(g4f.Provider.DDG.params). Additionally, they are viewable within the user interface by selecting the provider name post-generation. The randomization parameter is identified as "seed". @BokDan93
Why do I generate the same response for the same message?
I figured out the images, I needed to register the seed. And in terms of text models, how can I apply randomization?
Where can I completely see all the parameters that I can apply to text generation?
Here's my code:
from g4f.client import Client as G4fClient
from g4f.Provider import DDG, Blackbox, IterListProvider
client = G4fClient(provider=IterListProvider([DDG, Blackbox]))
The text was updated successfully, but these errors were encountered: