XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 1
返回提交历史

XFEstudio/gpt4free

Fixed imports

64ab4770
Hamza <hamzaoubrahim51@gmail.com>
提交于

代码差异

2 个文件 +5 -0
Modified gpt4free/forefront/__init__.py +1 -0
@@ -1,6 +1,7 @@
1 1 from json import loads
2 2 from xtempmail import Email
3 3 from re import findall
4 from typing import Optional, Generator
4 5 from faker import Faker
5 6 from time import time, sleep
6 7 from uuid import uuid4
Added gpt4free/test.py +4 -0
@@ -0,0 +1,4 @@
1 import forefront
2 token = forefront.Account.create()
3 response = forefront.Completion.create(token=token, prompt='Hello!')
4 print(response)