We need programmers to review code templates, find logic errors, and write correct code examples.
What you'll actually do
Code Review & Audit
Check generated code for errors, check syntax, and verify code works correctly.
Find logic errors
Write prompts to find where models fail, and document how they can be improved.
How it works
Diagnostic Test
Verify your credentials and complete a 15-minute diagnostic test in Software Development.
Choose Projects
After diagnostic verification, browse open workspaces on your calibration center.
Weekly Payments
Conduct quality reviews, keep track of task approvals, and transfer payments weekly.
Typical workflow preview
Review models' attempts, point out factual or code-logic issues, and submit a corrected text prompt back to the frontier workspace.
def singleNonDuplicate(nums):
left, right = 0, len(nums) - 1
while left < right:
mid = (left + right) // 2
if mid % 2 == 1:
mid -= 1
if nums[mid] == nums[mid + 1]:
left = mid + 2
else:
right = mid
return nums[left]Verified binary search boundaries and correct logic.
Where AI models need you most
Frontier LLMs frequently breakdown during subtle reasoning and technical validation. These represent key focus vectors.
Code analysis
Reviewing time complexity and recursion steps.
Syntax checking
Checking for typing errors, pointer usage, and syntax rules.
API review
Verifying correct API requests and formats.
Basic security checking
Checking for simple security flaws like injection vulnerabilities.