janfeddersen-wq

Results 2 comments of janfeddersen-wq

~/.code_puppy/puppy.cfg file: [puppy] message_limit = 1000 Looking at the code, get_message_limit() is used to set the request_limit parameter in UsageLimits. usage_limits=UsageLimits(request_limit=get_message_limit()) In pydantic_ai, request_limit controls how many LLM API requests...

``` import sys import os import io # Windows Unicode/Emoji fix if sys.platform == "win32": os.environ["PYTHONUTF8"] = "1" try: import ctypes kernel32 = ctypes.windll.kernel32 kernel32.SetConsoleOutputCP(65001) kernel32.SetConsoleCP(65001) except Exception: pass if...