diff --git a/main.py b/main.py index e6b0e777..4fee100d 100644 --- a/main.py +++ b/main.py @@ -43,6 +43,6 @@ def gpt4_proxy(): if __name__ == '__main__': - app.run(host='localhost', port=6000) + app.run(host='localhost', port=7000) diff --git a/test.py b/test.py index c2da7bb0..b7131dbd 100644 --- a/test.py +++ b/test.py @@ -1,7 +1,7 @@ import requests def test_gateway(prompttext): - url = 'http://localhost:6000/gpt' + url = 'http://localhost:7000/gpt' payload = { 'prompt': prompttext, }