3d / server /src /services /hf.ts
hologramicon's picture
Update server/src/services/hf.ts
4e49987 verified
raw
history blame
279 Bytes
import fetch from 'node-fetch'
export async function proxyHF(url: string, payload: any) {
const r = await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
})
const j: any = await r.json()
return j
}