port 7000

This commit is contained in:
valueon 2025-03-08 22:54:19 +01:00
parent 9091ab0610
commit b54913a5de
2 changed files with 2 additions and 2 deletions

View file

@ -43,6 +43,6 @@ def gpt4_proxy():
if __name__ == '__main__':
app.run(host='localhost', port=6000)
app.run(host='localhost', port=7000)

View file

@ -1,7 +1,7 @@
import requests
def test_gateway(prompttext):
url = 'http://localhost:6000/gpt'
url = 'http://localhost:7000/gpt'
payload = {
'prompt': prompttext,
}