Josejc00 commited on
Commit
573b645
1 Parent(s): 3bee04f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import g4f
2
+ import g4f.api
3
+
4
+ if __name__ == "__main__":
5
+ print(f'Starting server... [g4f v-{g4f.version}]')
6
+ g4f.api.Api(engine = g4f, debug = True).run(ip = "127.0.0.1:1337")