You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Phospho is a powerful and easy-to-use analytics platform for large language model (LLM) applications. It provides developers with the tools to log, analyze, and understand the interactions between users and their LLM applications.
Installation
To use Phospho in your Node.js project, install it via npm:
npm install phospho
Usage
You need to have a Phospho account to use this library. If you don't have one, you can sign up for free at phospho.ai.
Quickstart
import{phospho}from"phospho";phospho.init({apiKey: "...",// Get your API key on phospho.aiprojectId: "...",});// Log a taskphospho.log({input: "User Query",output: "LLM Response"}).then((response)=>console.log("Log successful:",response)).catch((error)=>console.error("Error:",error));
You only need to do phospho.init() once in your app, then you can reuse it accross you whole codebase.
More Information
For more information, please visit the documentation at docs.phospho.ai
About
The Node package for phospho, the LLM analytics platform