Skip to content

Releases: Scale3-Labs/langtrace

1.5.9-pre.1977e0b9a

02 Jul 00:55
f980b32
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.5.7...1.5.9-pre.1977e0b9a

1.5.9

02 Jul 00:32
f980b32
Compare
Choose a tag to compare

This release contains a minor bug fix to API key generation

1.5.8

01 Jul 23:07
f980b32
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.5.7...1.5.8

1.5.7

28 Jun 20:16
dd53663
Compare
Choose a tag to compare

This release has the following features, bugfixes and migrations

Features:

  • If you are storing and fetching prompts from Langtrace in your code, you can now see the prompt ID and prompt version in the traces tab.
  • We have exposed an API for creating projects programatically. In order to do this, create a global API key by going to Settings -> Team from the top level projects page. Then use this API to create projects programatically. https://docs.langtrace.ai/api-reference/project/POST-project

Migrations:
Note: Only for self hosted setups

  • Please run the following migration which adds apiKeyHash to the Team table.
ALTER TABLE "Team" ADD COLUMN "apiKeyHash" TEXT;

CREATE UNIQUE INDEX "Team_apiKeyHash_key" ON "Team"("apiKeyHash");

1.5.6

25 Jun 08:23
dd838c7
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.5.5...1.5.6

1.5.5

25 Jun 07:43
00cb17a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.5.4...1.5.5

1.5.4

20 Jun 03:49
de693a1
Compare
Choose a tag to compare
  • Bugfixes and minor enhancements

1.5.3

20 Jun 02:00
bbb6a2b
Compare
Choose a tag to compare

This is a minor release which contains the following:

  • Prompt registry & Playground integration

1.5.2

17 Jun 23:16
e16d627
Compare
Choose a tag to compare

Summary:

  • Added DSPy support, enhanced UI, and updated pricing models with minor bug fixes.

Key points:

  • Added DSPy support in README.md, components/shared/vendor-metadata.tsx, and lib/utils.ts.
  • Enhanced UI in components/project/traces/trace-row.tsx by refactoring class names and improving conditional rendering.
  • Added new pricing models in lib/constants.ts.
  • Minor bug fixes and code refactoring in lib/utils.ts.

1.5.1

13 Jun 19:34
fa4ea33
Compare
Choose a tag to compare

This release contains the following:

  • Support for Automatic evaluations (LLM as judge) using Inspect AI (https://github.com/UKGovernmentBEIS/inspect_ai)
  • Advanced filters for filtering grouping traces
  • Model based filters for metrics
  • User ID based filters for metrics and traces
  • Manual Evaluations is getting renamed as Annotations
  • Bugfixes and performance improvements

Postgres Database Migration

Please run the following migration before updating & restarting your server:

RENAME COLUMN "expectedOutput" TO "annotatedOutput";