18 Matching Annotations
  1. Nov 2025
    1. There was a bug in split_text() (in autogpt/processing/text.py). The original algorithm split a webpage into paragraphs, and kept adding paragraphs into a "chunk" list, until it hit some max_length. Then it yielded that chunk, and started the next chunk by simply adding the next paragraph.The issue is, that some paragraphs are huge, without any newline in them, and this "let's add a paragraph as the first element of a chunk" is what caused the error in all of the issues. The other issue was that split_text() ignored BROWSE_CHUNK_MAX_LENGTH The third issue was that BROWSE_CHUNK_MAX_LENGTH was understood as the number of characters, whereas in reality it should really use the number of tokens.
  2. Oct 2025
    1. Same problem can be found in tf.keras.layers.ZeroPadding3D. Here is the repo code: padding = 16 data_format = None __input___0_tensor = tf.random.uniform([1, 1, 2, 2, 3], minval=0.8510533546655319,maxval=3.0,dtype=tf.float64) __input___0 = tf.identity(__input___0_tensor) ZeroPadding3D_class = tf.keras.layers.ZeroPadding3D(padding=padding,data_format=data_format) layer = ZeroPadding3D_class inputs = __input___0 with tf.GradientTape() as g: g.watch(inputs) res = layer(inputs) print(res.shape) grad = g.jacobian(res, inputs) print(grad)
  3. Sep 2025
    1. I also think is that, I find that plugins_config (at line 178 Auto-GPT-stable/autogpt/plugins/init.py) is always empty, no matter if is configured "correctly", which is not clear how they need to properly be defined considering every plugin developer use a different name for the plugins (ones with dashes, others without, etc..) besides some are not yet implementing the template plugin class. but also in what I read say that this is not yet strictly necessary. They talk about a "as long as they are in the correct (NEW) format" but it is not clear either what this is.
    1. Whenever it has completed auto-tasks (I usually do tasks in blocks of 50 (y -50) to (y -200). You can type in a message to it instead of typing y -xx or n (to exit). It will say it doesn't understand but typically "fixes" itself and sometimes will accept what you've written.
  4. Aug 2025