Skip to content

Commit 392d01e

Browse files
authored
AIProxy bug fix: Do not fall back to Lou's computer (#64)
1 parent ca23a7e commit 392d01e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sources/OpenAI/AIProxy/Endpoint+AIProxy.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ extension Endpoint {
3939
queryItems: [URLQueryItem])
4040
-> URLComponents
4141
{
42-
// var components = URLComponents(string: serviceURL ?? "https://api.aiproxy.pro")!
43-
var components = URLComponents(string: serviceURL ?? "http://Lous-MacBook-Air-3.local:4000")!
42+
var components = URLComponents(string: serviceURL ?? "https://api.aiproxy.pro")!
4443
components.path = components.path.appending(path)
4544
if !queryItems.isEmpty {
4645
components.queryItems = queryItems

0 commit comments

Comments
 (0)