freeGPT
1.0.0
Freegpt可以免費訪問文本和圖像生成模型。
還有一個官方的不和諧機器人。
python -m pip install -U freeGPT
| 模型 | 網站 |
|---|---|
| GPT3 | chat9.yqcloud.top |
| GPT4 | you.com |
| gpt3_5 | vitalentum.net |
| Prodia | prodia.com |
| 授粉 | 授粉 |
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 } " )