|
const express = require('express'); |
|
const rateLimit = require('express-rate-limit'); |
|
const axios = require('axios'); |
|
|
|
const app = express(); |
|
app.use(express.json()); |
|
|
|
const openai_key = process.env.OPENAI_KEY; |
|
|
|
const limiter = rateLimit({ |
|
windowMs: 5 * 1000, |
|
max: 1, |
|
handler: function (req, res) { |
|
return res.status(429).json("wait"); |
|
}, |
|
}); |
|
|
|
|
|
|
|
|
|
const start = `${process.env.start}`; |
|
|
|
app.post('/generate', async (req, res) => { |
|
res.status(500).json({ content: '+ошибка+❗ Вы используете устаревшую версию АромаАрт. Установите версию 1.3.1 и более.-ошибка-' }); |
|
}); |
|
|
|
app.post('/cr', async (req, res) => { |
|
res.json({ content: `{"whate":"🪨", "howe":"ОБНОВИТЕСЬ", "text":"Текущая версия приложения устарела. Установите новую из нашего телеграм канала: @yufi_ru", "succ":"победа", "what":"Обновите", "how":"Версию", "howl":"@yufi_ru"}` }); |
|
}); |
|
|
|
app.post('/cre', async (req, res) => { |
|
const prompt = req.body.prompt; |
|
const apiKey = req.body.api || openai_key; |
|
|
|
if (!prompt) { |
|
return res.status(400).json("wait"); |
|
} |
|
|
|
try { |
|
const response = await axios.post('https://geminiyufi.vercel.app/v1/chat/completions', { |
|
messages: [{'role': 'system', 'content': start}, {'role': 'user', 'content': prompt}], |
|
max_tokens: 2000, |
|
temperature: 0.25, |
|
|
|
frequency_penalty: -0.1, |
|
model: "gemma-2-27b-it", |
|
|
|
}, { |
|
headers: { |
|
'Authorization': `Bearer ${apiKey}`, |
|
'Content-Type': 'application/json', |
|
}, |
|
}); |
|
|
|
if (response.data.choices && response.data.choices.length > 0 && response.data.choices[0].message) { |
|
const content = response.data.choices[0].message.content.trim(); |
|
console.log(`\n---\nПользователь: ${prompt}\n Ответ:\n ${content}`); |
|
res.json({ content }); |
|
} else { |
|
res.status(500).json({ content: 'errora' }); |
|
} |
|
} catch (error) { |
|
console.error(error); |
|
res.status(500).json({ content: 'errorb' }); |
|
} |
|
}); |
|
|
|
const port = 7860; |
|
app.listen(port, () => { |
|
console.log(`API сервер запущен на порту ${port}`); |
|
}); |