package incheon.sgp.ipd.llm.service;

import java.util.Map;

public interface LlmService {

    /**
     * LLM 서버로 채팅 요청을 전달하고 응답을 반환합니다.
     *
     * @param request 채팅 요청 데이터
     * @return LLM 서버 응답
     * @throws Exception 통신 오류 시
     */
    Map<String, Object> chat(Map<String, Object> request) throws Exception;
}
