diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 15:41:49 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 15:41:49 +0200 |
commit | 83484c0a5658b023bcef930aee5099a4fc059cb4 (patch) | |
tree | 36b4467e36c9363e997c0706f0bdcdcae26ed0aa /g4f/api/run.py | |
parent | Add MetaAI Provider and some small improvments (diff) | |
download | gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar.gz gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar.bz2 gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar.lz gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar.xz gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.tar.zst gpt4free-83484c0a5658b023bcef930aee5099a4fc059cb4.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/api/run.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/g4f/api/run.py b/g4f/api/run.py index 4dcf5613..bc1cbf92 100644 --- a/g4f/api/run.py +++ b/g4f/api/run.py @@ -1,6 +1,4 @@ -import g4f import g4f.api if __name__ == "__main__": - print(f'Starting server... [g4f v-{g4f.version.utils.current_version}]') - g4f.api.Api(engine = g4f, debug = True).run(ip = "0.0.0.0:10000") + g4f.api.run_api(debug=True) |