Skip to content

Releases: langfuse/langfuse-python

v1.7.1

21 Nov 16:17
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.7.0...v1.7.1

v1.7.0

20 Nov 20:39
Compare
Choose a tag to compare

What's Changed

Server version requirements

Requires server version >=1.0.0, see here

Full Changelog: v1.6.1...v1.7.0

v1.6.1

20 Nov 18:45
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.6.0...v1.6.1

v1.6.0

20 Nov 17:33
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.5.0...v1.6.0

1.5.0

17 Nov 17:31
Compare
Choose a tag to compare

This release supports streaming in the Python OpenAI integration

1.4.1

16 Nov 21:38
Compare
Choose a tag to compare

Configure the langfuse connection via the openai integration.

from langfuse.openai import openai

openai.langfuse_public_key = 'public-key'
openai.langfuse_secret_key = 'secret-key'
openai.langfuse_host = 'host'

completion = openai.chat.completions.create(
  name="test-chat",
  model="gpt-3.5-turbo",
  messages=[
      {"role": "system", "content": "You are a very accurate calculator. You output only the result of the calculation."},
      {"role": "user", "content": "1 + 1 = "}],
  temperature=0,
  metadata={"someMetadataKey": "someValue"},
)

v1.3.0

16 Nov 17:36
Compare
Choose a tag to compare

Support httpx 0.25.1

v1.2.1

16 Nov 17:08
Compare
Choose a tag to compare

This package supports all OpenAI SDK versions as of 0.27.8 now including the breaking changes in the OpenAI SDK as of 1.0.0