UNPKG

sspai-cli

Version:

A fast and colorful terminal AI interface built for developers, by developers.

15 lines (12 loc) 383 B
import axios from "axios"; export default async function Chat(input, currentModel) { try { const response = await axios.post('https://sspai.swarnadeepsahapoddar.in/generate', { model: currentModel, input: input }); return response.data.result; } catch (error) { return "Please Try Again Later"; } }