freeGPT
1.0.0
FreeGPT offre un accès gratuit aux modèles de génération de texte et d'image.
Il y a aussi un bot Discord officiel.
python -m pip install -U freeGPT
| Modèle | Site web |
|---|---|
| gpt3 | chat9.yqcloud.top |
| gpt4 | vous.com |
| gpt3_5 | vitalentum.net |
| prodia | prodia.com |
| pollinisation | pollinisations.ai |
from freeGPT import Client
while True :
prompt = input ( "?: " )
try :
resp = Client . create_completion ( "MODEL" , prompt )
print ( f"?: { resp } " )
except Exception as e :
print ( f"?: { e } " ) from freeGPT import Client
from PIL import Image
from io import BytesIO
while True :
prompt = input ( "?: " )
try :
resp = Client . create_generation ( "MODEL" , prompt )
Image . open ( BytesIO ( resp )). show ()
print ( f"?: Image shown." )
except Exception as e :
print ( f"?: { e } " )