mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-01 03:21:02 +00:00
7 lines
180 B
Python
7 lines
180 B
Python
import g4f
|
|
import g4f.api
|
|
|
|
if __name__ == "__main__":
|
|
print(f'Starting server... [g4f v-{g4f.version}]')
|
|
g4f.api.Api(engine = g4f, debug = True).run(ip = "127.0.0.1:1337")
|