SDK Log Ingestion
Use the Python SDK to upload log data
Push data manually or as part of a daily orchestration job using our Python SDK. This ingestion method allows for the most flexibility, but requires the most off-platform coding.
The following fields are required regardless of which ingestion method you are using:
input: The text input to the LLM as astring.output: The text response from the LLM as astring.timestamp: The UTC timecode associated with the LLM call. Must be a timezone-aware datetime in UTC (Python:datetimewithtzinfo=UTCor pandas:datetime64[us, UTC]).
Example Code
Check out the Quickstart for an example of using the SDK Log Ingestion as a Data Connection.
Was this helpful?

