This commit is contained in:
2026-01-22 17:33:28 +08:00
parent 1bbf177b2c
commit b46759dc73
105 changed files with 2929 additions and 433 deletions

View File

@@ -0,0 +1,8 @@
package com.hertz.ai.service;
import reactor.core.publisher.Flux;
public interface AiService {
String chat(String message, Double temperature);
Flux<String> streamChat(String message, Double temperature);
}