木高的追忆
希望时代的涂鸦
高考涉及的数列通项核心求法, 都在这!|小猪2.0_哔哩哔哩_bilibili
https://i0.hdslb.com/bfs/article/2308df871f9718508300621e782af3e7621504283.png
async function callLLMAPI(prompt) {
const apiKey = ‘your-api-key’; // 替换为你的 DeepSeek 或其他 LLM 的 API 密钥
const url = ‘https://api.deepseek.com/v1/chat‘; // 替换为正确的 API URL
const requestBody = {
prompt: prompt,
max_tokens: 100, // 可根据需要调整
temperature: 0.7, // 控制生成的随机性
};
try {
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${apiKey}`, // 使用 API 密钥进行认证
},
body: JSON.stringify(requestBody),
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
console.log('Response:', data);
return data;
} catch (error) {
console.error('Error:', error);
}
}
// 调用示例
callLLMAPI(“你好,帮我写一个网站前端调用 LLM API 的教程。”);