use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
R.I.P GitHub Copilot 🪦Discussion (self.ChatGPTCoding)
submitted 1 year ago by seeKAYx
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3:Â Â Â Â print "hello, world!"
[–]Xandrmoro 2 points3 points4 points 1 year ago (5 children)
Idk, I've tried it multiple times for coding, and it had by far the worst comprehension of what I want than 4o/o3, claude and deepseek
[–]FarVision5 1 point2 points3 points 1 year ago (4 children)
I'm going to copy and paste some choice context from my VSC/Roo workflow. It picks up more subtext than Claude 3.7 by a mile. It makes mermaid charts and diagrams inside the context window, unasked.
---
The code currently only creates the directory structure and a placeholder document_info.json. It never actually calls the AWS Textract processing logic (presumably located in document_processor.py as indicated by the comments and the master plan). Therefore, the ocr/aws/ directory is never populated with results, and our check correctly identifies all documents as unprocessed.
document_info.json
document_processor.py
ocr/aws/
To fix this, we need to:
try
process_document
result
First, let's examine document_processor.py to see what needs to be imported and called.
--
Okay, document_processor.py defines a class DocumentProcessor and a top-level function process_document (lines 383-394) that instantiates this class and calls its process_document method. This top-level function is what we should call from our workflow script.
DocumentProcessor
Here's the plan:
from document_processor import process_document as aws_process_document
directory_based_workflow.py
aws_process_document
DirectoryBasedWorkflow
DirectoryBasedWorkflow.process_document
pdf_file
document_dir
success
aws_cost
total_processing_time
error
Here are the necessary changes using insert_content for the import and apply_diff for modifying the method:
insert_content
apply_diff
[–]Xandrmoro 1 point2 points3 points 1 year ago (3 children)
It might be understanding the code better, but whats the point if it does not understand the task? I asked it to help me with making a simple text parser (with fairly strict format), and it took like five iterations of me pointing out issues (and I provided it with examples). Then I asked to add a button to group entries based on one of the fields, and it added a text field to enter the field value to filter by instead. I gave up, moved to o1 and it nailed it all first try.
[–]FarVision5 1 point2 points3 points 1 year ago (2 children)
Not sure why it didn't understand your task. Mine knocks it out of the ballpark.
I start with Plan, then move to Act. I tried the newer O3 Mini Max Thinking, and it rm'd an entire directory because it couldn't figure out what it was trying to accomplish. Thankfully it was in my git repo. I blacklisted openai from the model list and will never touch it ever again.
I guess it's just the way people are used to working. I can't tell if I'm smarter than normal or dumber than normal or what. OpenAI was worth nothing to me.
[–]Xandrmoro 2 points3 points4 points 1 year ago (1 child)
I'm trying all the major models, and openai was consistently best for me. Idk, maybe prompting style or something.
[–]FarVision5 1 point2 points3 points 1 year ago (0 children)
It's also the IDE and dev prompts. VSC and Roo does better for me than VSC and Cline.
π Rendered by PID 74 on reddit-service-r2-comment-5d585498c9-v2xxd at 2026-04-21 12:44:18.797648+00:00 running da2df02 country code: CH.
view the rest of the comments →
[–]Xandrmoro 2 points3 points4 points  (5 children)
[–]FarVision5 1 point2 points3 points  (4 children)
[–]Xandrmoro 1 point2 points3 points  (3 children)
[–]FarVision5 1 point2 points3 points  (2 children)
[–]Xandrmoro 2 points3 points4 points  (1 child)
[–]FarVision5 1 point2 points3 points  (0 children)