File size: 1,107 Bytes
f4aba6e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
'use strict'

const nodeCache = require('node-cache');
const dotenv = require('dotenv');
const HfInference = require('@huggingface/inference').HfInference;

dotenv.config();

const inference = new HfInference(process.env.HF_TOKEN);
const cache = new nodeCache(
  {
    stdTTL: 60 * 60 * 24,
    checkperiod: 60 * 60,
    useClones: false
  }
);

const REPO_NAME = "black-forest-labs/FLUX.1-schnell"

module.exports = async function (fastify, opts) {
  fastify.get('/:inputs', async function (request, reply) {
    const { inputs } = request.params;
    const slug = inputs.replace(/[^a-zA-Z0-9]/g, '');

    if (cache.get(slug)) {
      const image = await cache.get(slug);
      console.log("Cache hit")
      return reply
        .header('Content-Type', 'image/jpeg')
        .send(image);
    }

    const hfRequest = await inference.textToImage({
      inputs,
      model: REPO_NAME,
    })

    const buffer = await hfRequest.arrayBuffer();
    const array = new Uint8Array(buffer);

    cache.set(slug, array);

    return reply
      .header('Content-Type', 'image/jpeg')
      .send(array);
  })
}