- Integrate with your workflows
- Integrate with your Langchain apps
Logging Workflows
If you’re looking to log your workflows, we provide an interface for uploading your executions.- Python
- TypeScript
Langchain
Galileo supports the logging of chains fromlangchain
. To log these chains, we require using the callback from our Python client promptquality
.
Before creating a run, you’ll want to make sure you have an evaluation set (a set of questions / sample inputs you want to run through your prototype for evaluation). Your evaluation set should be consistent across runs.
First, we are going to construct a simple RAG chain with Galileo’s documentations stored in a vectorDB using Langchain:
GalileoPromptCallback
:
For more detailed information on Galileo’s Langchain integration, check out instructions here.