Agent can't read more then 37 lignes HELP

I need him to read the whole Vtable it’s only 80 lignes, but i don’t know how to remove this limite, even when i told him to read the entire file he read only 37 lignes

If someone can help me,

Best regards

Hello any help ?

Hey. This isn’t a system limit of 37 lines. There’s no hardcoded cap like that. By default, the backend returns the whole file if the model doesn’t pass offset or limit. In your screenshot, you can see the model chose to call Read ... L1-37, so it explicitly requested pagination even though the file is only 80 lines. This is a known QoL issue. Some models are just too conservative and split reads into chunks.

What you can try:

  1. Attach the file directly via @file type @ in chat and pick the file, or drag and drop it into chat. Then the full content goes into context without using the Read tool.
  2. Be explicit: “Read the entire file in one call, do not pass offset or limit parameters.”
  3. Try another model. File reading behavior varies between models, and some are more willing to read the whole file.

Let me know if that helps.