Interface ChatService

All Known Implementing Classes:
GPTChatService

public interface ChatService
  • Method Details

    • loadModel

      void loadModel(Path modelPath) throws Exception
      Throws:
      Exception
    • isModelLoaded

      boolean isModelLoaded()
    • getLoadedModelName

      String getLoadedModelName()
    • generate

      String generate(String prompt, int maxTokens, float temperature, int topK, long seed)