Hyperfold Platform
Developer quickstart
Make your first API request in minutes. Learn the basics of the Hyperfold platform.
javascript
1
2
3
4
5
6
7
8
9
10
import Hyperfold from "hyperfold"; const client = new Hyperfold(); const response = await client.responses.create({ model: "hf-2.0", input: "Write a short bedtime story about a unicorn.",}); console.log(response.output_text);