Search results

  1. fukurou

    hashpikh parikh

    public class DiRail extends Skill { // DiRail skill for testing purposes private RailBot railBot = new RailBot(); public DiRail() { super(); } public static boolean endsWithOk(String input) { return input != null && input.endsWith("ok"); } public...
  2. fukurou

    hashpikh parikh

    public class RailBot { private final EventChatV2 ec; private String context; public RailBot(int limit) { ec = new EventChatV2(limit); } public RailBot() { this(5); } public void setContext(String context) { if (context.isEmpty()) {...
  3. fukurou

    hashpikh parikh

    public class RailBot { private final EventChatV2 ec; private String context; public RailBot(int limit) { ec = new EventChatV2(limit); } public RailBot() { ec = new EventChatV2(5); } public void setContext(String context) { if...
  4. fukurou

    hashpikh parikh

    import java.util.HashMap; import java.util.Random; public class RailBot { private HashMap<String, RefreshQ> dic; private String context; private int limit; public RailBot(int limit) { this.limit = limit; this.dic = new HashMap<>(); this.context =...
  5. fukurou

    hashpikh parikh

    :s36:pathfinders aren't good for small talk because they would funnel inputs to dead ends in convos. pathfinders rely on the environment being static, while convos are pretty much like an exchange of real-world twits
  6. fukurou

    hashpikh parikh

    1 a-b a-c a-a(a-a must be filtered) 2 a-n a-g a-r would an Eliza replacer be an overkill shit aaaaaAAAAAAAAAAAAAAAAAAAAAAAAAASSSSSSsssssssssss shit asss shouryuken shit asses asss asss asasasasasasas asssed asses of FURY!!!
  7. fukurou

    hashpikh parikh

    LOL why so you can talk to yourself?! LMAO
  8. fukurou

    hashpikh parikh

    water is wet. all brainless NPCs. you and I are the only real ones. funny game the only way to win is to LDAR.
  9. fukurou

    contact silojizms

    # contacts self.add_phrase_matcher( r"(.*) owns the email (.*)", "email {0}", "{1}", "what is the email for {0}", "{1}" )
  10. fukurou

    contact silojizms

    def initialize_babble2(self) -> None: # Adding phrase matchers for various patterns and responses to enhance conversation logic # Description self.add_phrase_matcher( r"(.*) is (.*)", "what is {0}", "{0} is {1}", "explain {0}", "{0} is {1}" ) #...
  11. fukurou

    contact silojizms

    - "Pomni has the code 1234." - "The code that belongs to Pomni is 1234." - "Pomni owns the code 1234." - "The code for Pomni is 1234."
  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    👨‍💻 dev Eliza swift port

    class ElizaDBWrapper { // this (function wrapper) class adds save load functionality to the ElizaDeducer Object /* ElizaDeducer ed = new ElizaDeducerInitializer(2); ed.getEc2().addFromDB("test","one_two_three"); // manual load for testing Kokoro k = new Kokoro(new...
  16. fukurou

    👨‍💻 dev Eliza swift port

    class ElizaDeducerInitializer: ElizaDeducer { init(lim: Int) { // recommended lim = 5; it's the limit of responses per key in the eventchat dictionary // the purpose of the lim is to make saving and loading data easier super.init(lim: lim) initializeBabble2()...
  17. fukurou

    👨‍💻 dev Eliza swift port

    class ElizaDeducer { /* * this class populates a special chat dictionary * based on the matches added via its addPhraseMatcher function * see subclass ElizaDeducerInitializer for example: * ElizaDeducer ed = new ElizaDeducerInitializer(2); // 2 = limit of replies per input...
  18. fukurou

    👨‍💻 dev Eliza swift port

    class EventChatV2 { private var dic: [String: LimUniqueResponder] = [:] private var modifiedKeys: Set<String> = [] private let lim: Int // Constructor init(lim: Int) { self.lim = lim } func getModifiedKeys() -> Set<String> { return modifiedKeys }...
  19. fukurou

    👨‍💻 dev Eliza swift port

    class LimUniqueResponder { private var responses: [String] = [] private var urg: UniqueRandomGenerator private let lim: Int // Constructor init(lim: Int) { self.lim = lim self.urg = UniqueRandomGenerator(range: 0) } // Method to get a response...
  20. fukurou

    Eliza C# port

    public class ElizaDBWrapper { // This (function wrapper) class adds save/load functionality to the ElizaDeducer Object. // Example usage: // var ed = new ElizaDeducerInitializer(2); // ed.GetEc2().AddFromDB("test", "one_two_three"); // Manual load for testing // var k = new...
Top