import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lamini: {
type: "app",
app: "lamini",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lamini.ai/v2/classifier/projects`,
headers: {
Authorization: `Bearer ${this.lamini.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
Emit new events with the status of a training job. See the documentation
Create a fine-tuning job with a dataset. See the documentation
Generate completions using a Lamini model. See the documentation
Retrieve the results of a batch completion request from Lamini. See the documentation
Lamini uses API keys for authentication. When you connect your Lamini account, Pipedream securely stores the keys so you can easily authenticate to Lamini APIs in both code and no-code steps.