This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Agent } from "undici"; | |
const DEFAULT_BASE_URL = "https://api.fireworks.ai/inference/v1"; | |
const httpAgent = new Agent({ | |
keepAliveTimeout: 120_000, | |
}); | |
export async function chat(opts) { | |
const { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Chat bubble (always visible bottom right) */ | |
:root { | |
--chat-offset: 24px; | |
} | |
#chat-bubble { | |
position: fixed; | |
right: 24px; | |
bottom: 24px; | |
width: 56px; |