gpt / gpt4free /etc /tool /openapi.py
LoRDxdd's picture
Add gpt4free API for Hugging Face
a4b70d9
import json
from g4f.api import create_app
app = create_app()
with open("openapi.json", "w") as f:
data = json.dumps(app.openapi())
f.write(data)
print(f"openapi.json - {round(len(data)/1024, 2)} kbytes")