freeGPT
1.0.0
FreeGpt는 텍스트 및 이미지 생성 모델에 대한 무료 액세스를 제공합니다.
공식 불화 봇도 있습니다.
python -m pip install -U freeGPT
| 모델 | 웹 사이트 |
|---|---|
| GPT3 | chat9.yqcloud.top |
| GPT4 | you.com |
| GPT3_5 | Vitalentum.net |
| 프로디아 | prodia.com |
| 수분 | pollinations.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 } " )