Github

Github repository for Langtrace Python SDK’s -> Scale3-Labs/langtrace-python-sdk.

To use the managed version of Langtrace, follow these steps:

  1. Sign up by going to this link Langtrace.
  2. Create a new Project and Generate an API key.

Installation

  1. In your application, install the Langtrace Typescript SDK using npm:
Shell
pip install langtrace-python-sdk

Initialization

  1. Initialize the Langtrace SDK with the API key you generated in the step 2:
# Import it into your project
from langtrace_python_sdk import langtrace # Must precede any llm module imports
langtrace.init(api_key = '<LANGTRACE_API_KEY>')

For self-hosted Langtrace add api_host and point the URL to your own DNS or IP sddress.Langtrace

Example below:

Here we are using http://localhost:3000/api/trace as the API host. You can replace it with your own DNS or IP address.

For more options on how to use SDK, please refer to features section.