Search results

  1. fukurou

    hashpikh parikh

    LOL why so you can talk to yourself?! LMAO
  2. 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.
  3. fukurou

    contact silojizms

    # contacts self.add_phrase_matcher( r"(.*) owns the email (.*)", "email {0}", "{1}", "what is the email for {0}", "{1}" )
  4. 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}" ) #...
  5. 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."
  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. 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...
  10. 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()...
  11. 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...
  12. 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 }...
  13. 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...
  14. 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...
  15. fukurou

    Eliza C# port

    using System; public class ElizaDeducerInitializer : ElizaDeducer { // Constructor public ElizaDeducerInitializer(int lim) : base(lim) { // Recommended lim = 5; it's the limit of responses per key in the EventChat dictionary. // The purpose of the lim is to make...
  16. fukurou

    Eliza C# port

    using System; using System.Collections.Generic; using System.Text.RegularExpressions; public class ElizaDeducer { // This class populates a special chat dictionary based on the matches added via its AddPhraseMatcher function. // See subclass ElizaDeducerInitializer for example: //...
  17. fukurou

    Eliza C# port

    public class EventChatV2 { private readonly Dictionary<string, LimUniqueResponder> dic = new Dictionary<string, LimUniqueResponder>(); private readonly HashSet<string> modifiedKeys = new HashSet<string>(); private readonly int lim; // Constructor public EventChatV2(int lim)...
  18. fukurou

    Eliza C# port

    public class LimUniqueResponder { private List<string> responses; private UniqueRandomGenerator urg = new UniqueRandomGenerator(0); private readonly int lim; // Constructor public LimUniqueResponder(int lim) { responses = new List<string>(); this.lim =...
  19. fukurou

    eliza port vb.aSS

    Public Class ElizaDBWrapper ' This (function wrapper) class adds save/load functionality to the ElizaDeducer Object. ' Example usage: ' Dim ed As New ElizaDeducerInitializer(2) ' ed.GetEc2().AddFromDB("test", "one_two_three") ' Manual load for testing ' Dim k As New...
  20. fukurou

    eliza port vb.aSS

    Public Class ElizaDeducerInitializer Inherits ElizaDeducer ' Constructor Public Sub New(lim As Integer) ' 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...
Top