About
Welcome to Code Arena
Hey there,
We're thrilled to introduce you to our new platform, Code Arena 🌠
Here, we're creating the ultimate destination for evaluating code generated by LLMs.
We proviod a python library codearena, and a set of Restful APIs.
Thanks for paper submission requirements, we have a demo video here.
To get an API token, you can sign up an account, and generate your token from your Profile page.
We're currently working on the new version of Code Arena.
from codearena import codearena
# Initilize CodeArena Client
client = CodeArena(url_root='https://codearena.online', token='<codearena.online token>')
# Get Problem List
problems = client.get_problems()
# Get Problem Details
problem = client.get_problem(problem_id='<problem_id>')
# Get Submission List
submissions = client.get_submissions()
# Get Submission Details
submission = client.get_submission(<submission_id>)
# Submit Solution
submission_result = client.post_submission(problem_code="<problem_id>", language="<language>", source="<source_code>")
Feel free to dive right in and start experimenting. We're here to support you every step of the way (Email)!
Best regards,
Authors of Code Arena