fukurou's latest activity

  • fukurou
    fukurou replied to the thread 👨‍💻 dev sensory skills.
    GUIs don't have a consensus pattern. but we could add 3 sensory chobit... yeah fuck it. hmm do we want those skills added in the c'tor...
  • fukurou
    fukurou updated their status.
  • fukurou
    public void addResponse(String s1) { if (responses.contains(s1)) { responses.remove(s1); responses.add(s1)...
  • fukurou
    fukurou replied to the thread elkfjoksdjflksdjfinDS.
    def add_response(self, s1: str) -> None: if self.lastInsert == s1: # exits because repeat insert attempt...
  • fukurou
    fukurou replied to the thread elkfjoksdjflksdjfinDS.
    import random class UniqueRandomGenerator: def __init__(self, n1: int): if n1 < 0: raise ValueError("n1 must be...
  • fukurou
    fukurou replied to the thread elkfjoksdjflksdjfinDS.
    class LimUniqueResponder: def __init__(self, lim: int): self.responses: list[str] = [] self.lim = lim...
  • fukurou
    fukurou posted the thread elkfjoksdjflksdjfinDS in chit chat.
    class UniqueRandomGenerator: def __init__(self, n1: int): self.n1 = n1 self.numbers = list(range(n1))...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class DiRail(Skill): # DiRail skill for testing purposes def __init__(self, lim=5): super().__init__()...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class RailBot: def __init__(self, limit=5): self.ec = EventChatV2(limit) self.context = "stand by"...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class PhraseInflector: # Maps for pronoun and verb inflection inflection_map = { "i": "you", "me": "you"...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class QuestionChecker: QUESTION_WORDS = { "what", "who", "where", "when", "why", "how", "is", "are", "was", "were"...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class RailBot { private let ec: EventChatV2 private var context: String = "stand by" private var elizaWrapper...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class PhraseInflector { // Dictionary for pronoun and verb inflection private static let inflectionMap: [String: String] = [...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    class QuestionChecker { private static let QUESTION_WORDS: Set<String> = [ "what", "who", "where", "when", "why", "how"...
  • fukurou
    fukurou replied to the thread rail port solid shit inDS.
    public class RailBot { private readonly EventChatV2 ec; private string context = "stand by"; private ElizaDBWrapper...
Top