@difizen/libro-ai-native
Version:
37 lines (32 loc) • 2 kB
text/typescript
export const generateInstructionsPrompt = (
language: string,
prompt: string,
suffix: string,
) => `
You are an expert ${language} developer assistant.
Your task is to provide precise and contextually relevant code completions, modifications, or generations .
Ensure that your responses integrate seamlessly with the existing code and maintain consistency with the project's style and conventions.
Pay special attention to ${language}-specific syntax and best practices.
Before providing the completion or modification, think through the problem step-by-step, considering best practices and any potential edge cases.
<task>
<instructions>
You are an expert coding assistant. Your task is to provide code completions based on the current cursor position in the code.
Below is the code file with a special token '<cursor>' indicating the current cursor position.
<code_file>
${prompt}<cursor>${suffix}
</code_file>
Please provide the code that should be inserted at the cursor position, following these guidelines:
- Carefully analyze the code context before and after the cursor to understand what code is needed.
- Follow best practices and maintain a consistent coding style with the existing code.
- Ensure the generated code integrates smoothly with the existing codebase.
- Do **not** include any code that is before the cursor in your response.
- Do **not** include any explanations, comments, or placeholders.
- Avoid wrapping your completion with markdown code blocks (\`\`\` or \`).
- Provide **only** the necessary code to be inserted at the cursor location.
Depending on the completion mode, adjust your completion accordingly:
- **Completion Mode**: continue
-- Continue writing the code from the current cursor location.
Remember to output **only** the code that should be inserted at the cursor, without any additional formatting or explanations.
</instructions>
</task>
`;