New reasoning model is online: UnieAI U1

Code Refactoring

Modify code for debugging, commenting, optimization, etc.

Prompt



Code Example

from openai import OpenAI
 
client = OpenAI(
    base_url="https://api.unieai.com/",
    api_key="<YOUR_API_KEY>"
)
 
completion = client.chat.completions.create(
    model="UnieAI.u1-2503",
    messages=[
        {
            "role": "user",
            "content": "The efficiency of the following code is very low, and it doesn’t handle edge cases. Please first explain the problems with this code and the solutions, then optimize it:\n\n
python\ndef fib(n):\n    if n <= 2:\n        return n\n    return fib(n-1) + fib(n-2)\n
"
        }
    ]
)
 
print(completion.choices[0].message.content)

Tips 💡

Specific Framework Requirements

If you want the AI to refactor code to fit Django, Flask, FastAPI, etc., just specify it in the prompt.

Coding Style Guidelines

If you have specific coding styles (PEP8, Google Style Guide, etc.), mention them and the AI will help ensure the code follows those standards.

Language Conversion

You can ask to refactor or convert code between languages (Python, JavaScript, TypeScript, Java, C#, etc.). Just specify the language in the prompt.

Explain the Modifications

AI can give you detailed explanations for each change, making learning more efficient and improving team communication.

On this page