com.harium.suneidesis.chat.output.Output Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
package com.harium.suneidesis.chat.output;
public interface Output {
default void print(String sentence) {
print(sentence, null);
}
void print(String sentence, OutputContext context);
void produceFile(String path, String description);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy