File size: 217 Bytes
57e16da
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { HfInference } from '@huggingface/inference';
import { get } from 'svelte/store';
import { HF_ACCESS_TOKEN } from '../store';

export function getInference() {
	return new HfInference(get(HF_ACCESS_TOKEN));
}