From b54913a5dec00a4189d728e81bf6aa6fa4e5748d Mon Sep 17 00:00:00 2001
From: valueon
Date: Sat, 8 Mar 2025 22:54:19 +0100
Subject: [PATCH] port 7000
---
main.py | 2 +-
test.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
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,
}