This commit is contained in:
Artur 2024-10-21 20:14:44 +02:00
parent 51859763b9
commit f3e2670619
1 changed files with 3 additions and 2 deletions

View File

@ -9,10 +9,11 @@ import { Sentence } from './chats';
})
export class AiApiService {
private aiApiUrl = 'http://127.0.0.1:5001/chatgpt/ask';
private aiApiUrl ="https://ai.arti24.eu/chatgpt/ask";
// private aiApiUrl = 'http://localhost:5001/chatgpt/ask';
// private aiApiUrl = 'http://127.0.0.1:8801/chatgpt/ask';
// private aiApiUrl = 'http://127.0.0.1:8801/chatgpt/ask';
// private aiApiUrl ="http://localhost:5001/chatgpt/ask";
constructor(private http: HttpClient) { }
ask(question: Sentence ) : Observable<Sentence>{