diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-20 20:12:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 20:12:36 +0200 |
commit | da81d1e51aa5c625e4107bf8148cdb3c778f4001 (patch) | |
tree | 01b7677bfd51667e6b8bebe0ac72921aa48cba58 /g4f/api/run.py | |
parent | Merge pull request #1862 from hlohaus/nem (diff) | |
parent | Disable Bing integration test (diff) | |
download | gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.gz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.bz2 gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.lz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.xz gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.tar.zst gpt4free-da81d1e51aa5c625e4107bf8148cdb3c778f4001.zip |
Diffstat (limited to 'g4f/api/run.py')
-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) |