Skip to content

Commit a97e862

Browse files
committed
docs(multi-modality): remove beta warnings
1 parent 67d5646 commit a97e862

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

pages/docs/observability/features/multi-modality.mdx

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ sidebarTitle: Multi-Modality
66

77
# Multi-Modality and Attachments
88

9-
<Callout type="info">
10-
11-
Support for media attachments to traces is currently in beta. Please report any [issues](/issues) and add feature requests to this ongoing [discussion thread](https://github.com/orgs/langfuse/discussions/3004).
12-
13-
</Callout>
14-
159
Langfuse supports multi-modal traces including **text, images, audio, and other attachments**.
1610

1711
By default, **[base64 encoded data URIs](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data#syntax) are handled automatically by the Langfuse SDKs**. They are extracted from the payloads commonly used in multi-modal LLMs, uploaded to Langfuse's object storage, and linked to the trace.
@@ -34,7 +28,7 @@ import MultiModalImageGallery from "@/components-mdx/multi-modal-image-gallery.m
3428

3529
### Langfuse Cloud
3630

37-
Multi-modal attachments on Langfuse Cloud are free while in beta. We will be rolling out a new pricing metric to account for the additional storage and compute costs associated with large multi-modal traces in the coming weeks.
31+
Multi-modal attachments on Langfuse Cloud are currently free on Langfuse Cloud. We reserve the option to roll out a new pricing metric to account for the additional storage and compute costs associated with large multi-modal traces in the near-term future.
3832

3933
### Self-hosting
4034

@@ -166,17 +160,17 @@ with langfuse.start_as_current_span(name="analyze-document") as span: # Include
166160
```typescript
167161
import fs from "fs";
168162
import { LangfuseMedia } from "@langfuse/core";
169-
163+
170164
// Wrap media in LangfuseMedia class
171165
const wrappedMedia = new LangfuseMedia({
172166
source: "bytes",
173167
contentBytes: fs.readFileSync(new URL("./bitcoin.pdf", import.meta.url)),
174168
contentType: "application/pdf",
175169
});
176-
170+
177171
// Optionally, access media via wrappedMedia.obj
178172
console.log(wrappedMedia.obj);
179-
173+
180174
// Include media in any trace or observation
181175
const span3 = startObservation("media-pdf-generation");
182176

@@ -325,7 +319,7 @@ resolved_trace = langfuse.resolve_media_references(
325319

326320
```typescript
327321
import { LangfuseClient } from "@langfuse/client";
328-
322+
329323
const langfuse = new LangfuseClient()
330324

331325
// Example object with media references

0 commit comments

Comments
 (0)