File size: 5,186 Bytes
d8e09ae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | require("dotenv").config();
const express = require('express');
const axios = require('axios');
const app = express();
const bodyParser = require('body-parser');
app.use(bodyParser.json({ limit: '100mb' }));
app.use(bodyParser.urlencoded({limit: '100mb', extended: true}));
const API_TOKEN = process.env.API_TOKEN;
app.post('/v1/complete', async (req, res) => {
res.setHeader('Content-Type', 'text/event-stream; charset=utf-8');
res.setHeader('Cache-Control', 'no-cache');
res.setHeader('Connection', 'keep-alive');
res.setHeader('Transfer-Encoding', 'chunked');
res.flushHeaders();
//console.log(req.body);
const model = req.body.model;
const temp = req.body.temperature || 1.0;
const top_p = req.body.top_p || null;
const top_k = req.body.top_k || null;
const maxTokens = req.body.max_tokens_to_sample;
const stopSequences = req.body.stop_sequences || null;
const isStream = req.body.stream || false;
const prompt = req.body.prompt;
console.log(`Doing a request with stream = ${isStream}.`)
// Set up axios instance for SSE
const sourcegraph = axios.create({
baseURL: 'https://sourcegraph.com/.api/completions/stream',
headers: {
'Content-Type': 'application/json',
'Authorization': `token ${API_TOKEN}`
},
responseType: 'stream',
timeout: 180000,
});
let fullContent = "";
try {
let postData = {
model: model,
prompt: prompt,
maxTokensToSample: maxTokens
};
if (temp) postData.temperature = temp;
if (stopSequences) postData.stop_sequences = stopSequences;
if (top_p) postData.top_p = top_p;
if (top_k) postData.top_k = top_k;
const response = await sourcegraph.post('', postData);
let previousCompletion = "";
let buffer = ""; // Buffer to hold incomplete lines
response.data.on('data', (chunk) => {
buffer += chunk.toString();
let lines = buffer.split("\n");
buffer = lines.pop(); // Keep the last (potentially incomplete) line in the buffer
const data = lines.filter(line => line.startsWith('data: ')).map(line => line.replace(/^data: /, ''));
data.forEach((chunk) => {
try {
const parsedData = JSON.parse(chunk);
if ('completion' in parsedData) {
//console.log(resp);
if (isStream) {
// SourceGraph API always returns the full string, but we need the diff
const newPart = parsedData.completion.replace(previousCompletion, '');
previousCompletion = parsedData.completion;
let resp = { completion: newPart, stop_reason: null };
res.write(`event: completion\r\ndata: ${JSON.stringify(resp)}\r\n\r\n`);
}
else {
fullContent = parsedData.completion;
}
}
} catch (error) {
// If an error is thrown, the JSON is not valid
console.error('Invalid JSON:', chunk);
}})
});
response.data.on('end', () => {
if (isStream) {
let finalResp = {completion: "", stop_reason: "stop_sequence"};
res.write(`event: completion\r\ndata: ${JSON.stringify(finalResp)}\r\n\r\n`);
}
else {
res.write(JSON.stringify({completion: fullContent, stop_reason: "stop_sequence"}));
}
res.end();
console.log(`Request done.`)
});
} catch (error) {
console.error("Got an error: ", error);
res.status(500).send('An error occurred while making the request.');
}
});
app.use((err, req, res, next) => {
console.log(err);
res.status(500).json({"error": true});
});
process.on('uncaughtException', (err) => {
console.error('Uncaught exception:', err);
});
process.on('unhandledRejection', (reason, promise) => {
console.error('Unhandled Promise Rejection:', reason);
});
async function checkToken(token) {
const data = {
query: 'query { currentUser { username } }'
};
const config = {
method: 'post',
url: 'https://sourcegraph.com/.api/graphql',
headers: {
'Authorization': `token ${token}`
},
data: data
};
try {
const response = await axios(config);
if(response.data && response.data.data && response.data.data.currentUser) {
console.log(`Token works, username: ${response.data.data.currentUser.username}`);
return true;
} else {
return false;
}
} catch (error) {
return false;
}
}
// Two basic checks
if (!API_TOKEN) {
console.error("SourceGraph API token not found! Create a file named '.env' and put your token there as an API_TOKEN. See .env.example for an example.");
process.exit(1);
}
else if (API_TOKEN.indexOf("sgp_") == -1) {
console.error("Invalid SourceGraph API token! Make sure you copied the whole token starting with sgp_, like 'sgp_blablabla'.");
process.exit(1);
}
// Check token validity
checkToken(API_TOKEN).then(isValid => {
if (!isValid) {
console.error("Invalid SourceGraph API token! Make sure you copied the whole token and that the token is not revoked.");
process.exit(1);
}
const port = process.env.PORT || 3000;
app.listen(port, () => console.log(`Server listening on port ${port}`));
}); |