pro-code / file.js
yking21's picture
Create file.js
910002b verified
Raw
History Blame Contribute Delete
909 Bytes
async function generateExpertCode(userProblem) {
const response = await fetch(
"https://api-inference.huggingface.co/models/deepseek-ai/deepseek-coder-1.3b-instruct", // موديل كود خفيف وقوي
{
headers: {
"Authorization": "Bearer YOUR_HUGGINGFACE_API_TOKEN",
"Content-Type": "application/json"
},
method: "POST",
body: JSON.stringify({
inputs: `System: You are an elite Senior Software Engineer. Follow the 5-step analysis/code protocol.\nUser: ${userProblem}\nAssistant:`,
parameters: {
max_new_tokens: 1024,
temperature: 0.2 // درجة حرارة منخفضة لضمان الدقة وعدم التأليف
}
}),
}
);
const result = await response.json();
return result;
}