Why my codes is failed everytime?

I am new student here. Just purchase chatgpt plus and i GOT this error . I did asked chat gpt but I dont what is issue so please guide me .

It is difficult to understand what you are doing, and why.

You seem to struggle with the English language.
__

Why not try to use ChatGPT (LLM) to help you?

Let me show you how:

** Why my codes is failed everytime? Here is s screen shot**

ChatGPT said:

From the screenshot you’ve shared, we can see repeated task failures in OpenAI Codex’s coding agent interface — specifically on a task titled “Update respiratory” within the VimsRocz/IMU_GNSS repository. All attempts to run this task have failed, but the UI doesn’t provide detailed error messages here.

*** Are you trying to say " repository" ? ***

To help you understand why the code is failing every time, I recommend checking the following:


:test_tube: 1. Check the Codex Agent Logs

Click into one of the failed tasks. Codex typically provides a full log of what happened during:

  • Repository clone
  • Dependency installation
  • Script execution
  • Test runs

Look for:

  • Python errors (e.g. ModuleNotFoundError, IndentationError, TypeError)
  • Build system issues (e.g. CMake, make, or setup.py errors)
  • Test assertion failures
  • Missing or misnamed files (Codex may fail if it can’t find main.py, requirements.txt, or test files)

:brick: 2. Verify Project Structure

Codex expects a clean, testable project structure. Double check:

  • Is there a README.md or AGENTS.md explaining the repo’s flow?
  • Are tests located in a folder like tests/ and named with the test_*.py pattern?
  • Is there a requirements.txt, pyproject.toml, or environment.yml?

:gear: 3. Codex Instruction Clarity

The task says “Update respiratory” — but that’s vague. Codex works better with clear, actionable language, such as:

Add temperature compensation to respiratory rate sensor in imu.py.
Ensure test_sensor_reading.py still passes after this update.

If you’re only entering “Update respiratory,” Codex might be trying to guess too broadly.


:locked_with_key: 4. Repo Access or Permissions

Ensure the repo VimsRocz/IMU_GNSS:

  • Is accessible to the Codex agent (public or properly linked)
  • Does not have a corrupted .git folder
  • Doesn’t require credentials that aren’t being passed

This topic was automatically closed after 14 hours. New replies are no longer allowed.