1
Create a project
Go to your Galileo Console. Click on the big + icon on the top left, and follow the steps to create your Observe project.
2
Integrate Galileo in your code
Galileo Observe can integrate via Langchain callbacks, our Python
Logger, or via RESTful APIs.
3
Choose your Guardrail metrics
Turn on the metrics you want to monitor your system on, select from our Guardrail Metric store or register your
own.
Install the Galileo Client
Install the python client via pip install
galileo-observe
Getting an API Key
To create an API key:1
Go to your Galileo Console settings and select API Keys

2
Select Create a new key

3
Give your key a distinct name and hit Create

Logging via Client
If you’re not using LangChain, you can use our Python or TypeScript Logger to log your data to Galileo.First you can create your ObserveWorkflows object with your existing project.Next you can log your workflow.
Integrating with Langchain
We support integrating into both Python-based and Typescript-based Langchain systems:Integrating into your Python-based Langchain application is the easiest and recommended route. You can just add The GalileoObserveCallback logs your input, output, and relevant statistics back to Galileo, where additional evaluation metrics are computed.
GalileoObserveCallback(project_name="YOUR_PROJECT_NAME")
to the callbacks
of your chain invocation.