-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathtest_openai.py
More file actions
744 lines (608 loc) · 22.4 KB
/
Copy pathtest_openai.py
File metadata and controls
744 lines (608 loc) · 22.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
import asyncio
from types import SimpleNamespace
from unittest.mock import patch
import pytest
import langfuse.openai as lf_openai_module
from langfuse._client.attributes import LangfuseOtelSpanAttributes
from langfuse.openai import openai as lf_openai
class DummySyncResponse:
def __init__(self) -> None:
self.closed = False
def close(self) -> None:
self.closed = True
class DummyAsyncResponse:
def __init__(self) -> None:
self.closed = False
async def aclose(self) -> None:
self.closed = True
class DummyOpenAIStream(lf_openai.Stream):
def __init__(self, items, response) -> None:
self.response = response
self._iterator = iter(items)
class DummyOpenAIAsyncStream(lf_openai.AsyncStream):
def __init__(self, items, response) -> None:
self.response = response
self._iterator = self._stream(items)
async def _stream(self, items):
for item in items:
yield item
class DummyGeneration:
def __init__(self) -> None:
self.end_calls = 0
def update(self, **kwargs):
return self
def end(self) -> None:
self.end_calls += 1
class DummyFallbackAsyncResponse:
def __init__(self) -> None:
self.close_calls = 0
self.aclose_calls = 0
async def close(self) -> None:
self.close_calls += 1
async def aclose(self) -> None:
self.aclose_calls += 1
def _make_chat_stream_chunks():
usage = SimpleNamespace(prompt_tokens=3, completion_tokens=1, total_tokens=4)
return [
SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role="assistant",
content="2",
function_call=None,
tool_calls=None,
),
finish_reason=None,
)
],
usage=None,
),
SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role=None,
content=None,
function_call=None,
tool_calls=None,
),
finish_reason="stop",
)
],
usage=usage,
),
]
def _make_chat_stream_chunks_with_trailing_content_filter_chunk():
usage = SimpleNamespace(prompt_tokens=3, completion_tokens=1, total_tokens=4)
return [
SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role="assistant",
content="2",
function_call=None,
tool_calls=None,
),
finish_reason=None,
)
],
usage=None,
),
SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role=None,
content=None,
function_call=None,
tool_calls=None,
),
finish_reason="stop",
)
],
usage=usage,
),
SimpleNamespace(
model="",
choices=[
SimpleNamespace(
delta=None,
finish_reason=None,
content_filter_offsets={
"check_offset": 44,
"start_offset": 44,
"end_offset": 121,
},
content_filter_results={
"hate": {"filtered": False, "severity": "safe"},
"self_harm": {"filtered": False, "severity": "safe"},
"sexual": {"filtered": False, "severity": "safe"},
"violence": {"filtered": False, "severity": "safe"},
},
)
],
usage=None,
),
]
def _make_single_chunk_stream():
return SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role="assistant",
content="2",
function_call=None,
tool_calls=None,
),
finish_reason="stop",
)
],
usage=None,
)
def test_chat_completion_exports_generation_span(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.OpenAI(api_key="test")
response = SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
message=SimpleNamespace(
role="assistant",
content="2",
function_call=None,
tool_calls=None,
audio=None,
)
)
],
usage=SimpleNamespace(prompt_tokens=3, completion_tokens=1, total_tokens=4),
)
with patch.object(openai_client.chat.completions, "_post", return_value=response):
result = openai_client.chat.completions.create(
name="unit-openai-chat",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
metadata={"suite": "unit"},
)
assert result is response
langfuse_memory_client.flush()
span = get_span("unit-openai-chat")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_TYPE] == "generation"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_MODEL] == "gpt-4o-mini"
)
assert span.attributes["langfuse.observation.metadata.suite"] == "unit"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_INPUT) == [
{"role": "user", "content": "1 + 1 = ?"}
]
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT) == {
"role": "assistant",
"content": "2",
}
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_MODEL_PARAMETERS) == {
"temperature": 0,
"max_tokens": "Infinity",
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
}
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
def test_streaming_chat_completion_exports_ttft(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.OpenAI(api_key="test")
usage = SimpleNamespace(prompt_tokens=3, completion_tokens=1, total_tokens=4)
def fake_stream():
yield SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role="assistant",
content="2",
function_call=None,
tool_calls=None,
),
finish_reason=None,
)
],
usage=None,
)
yield SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
delta=SimpleNamespace(
role=None,
content=None,
function_call=None,
tool_calls=None,
),
finish_reason="stop",
)
],
usage=usage,
)
with patch.object(
openai_client.chat.completions, "_post", return_value=fake_stream()
):
stream = openai_client.chat.completions.create(
name="unit-openai-stream",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
chunks = list(stream)
assert len(chunks) == 2
langfuse_memory_client.flush()
span = get_span("unit-openai-stream")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
assert span.attributes["langfuse.observation.metadata.finish_reason"] == "stop"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
def test_chat_completion_error_marks_generation_error(langfuse_memory_client, get_span):
openai_client = lf_openai.OpenAI(api_key="test")
with patch.object(
openai_client.chat.completions,
"_post",
side_effect=RuntimeError("boom"),
):
with pytest.raises(RuntimeError, match="boom"):
openai_client.chat.completions.create(
name="unit-openai-error",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "explode"}],
temperature=0,
)
langfuse_memory_client.flush()
span = get_span("unit-openai-error")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_LEVEL] == "ERROR"
assert (
"boom" in span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_STATUS_MESSAGE]
)
assert LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT not in span.attributes
def test_openai_stream_preserves_original_stream_contract(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.OpenAI(api_key="test")
raw_response = DummySyncResponse()
raw_stream = DummyOpenAIStream(_make_chat_stream_chunks(), raw_response)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = openai_client.chat.completions.create(
name="unit-openai-native-stream",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
assert stream is raw_stream
assert isinstance(stream, lf_openai.Stream)
assert stream.response is raw_response
chunks = list(stream)
stream.close()
assert len(chunks) == 2
assert raw_response.closed is True
langfuse_memory_client.flush()
span = get_span("unit-openai-native-stream")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
assert span.attributes["langfuse.observation.metadata.finish_reason"] == "stop"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
def test_openai_stream_handles_trailing_azure_content_filter_chunk(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.OpenAI(api_key="test")
raw_stream = DummyOpenAIStream(
_make_chat_stream_chunks_with_trailing_content_filter_chunk(),
DummySyncResponse(),
)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = openai_client.chat.completions.create(
name="unit-openai-native-stream-azure-filter",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
chunks = list(stream)
stream.close()
assert len(chunks) == 3
langfuse_memory_client.flush()
span = get_span("unit-openai-native-stream-azure-filter")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert span.attributes["langfuse.observation.metadata.finish_reason"] == "stop"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
def test_openai_stream_break_still_finalizes_generation(
langfuse_memory_client, get_span
):
openai_client = lf_openai.OpenAI(api_key="test")
raw_response = DummySyncResponse()
raw_stream = DummyOpenAIStream(_make_chat_stream_chunks(), raw_response)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = openai_client.chat.completions.create(
name="unit-openai-native-stream-break",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
for chunk in stream:
assert chunk.choices[0].delta.content == "2"
break
assert raw_response.closed is False
langfuse_memory_client.flush()
span = get_span("unit-openai-native-stream-break")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
@pytest.mark.asyncio
async def test_async_chat_completion_exports_generation_span(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.AsyncOpenAI(api_key="test")
response = SimpleNamespace(
model="gpt-4o-mini",
choices=[
SimpleNamespace(
message=SimpleNamespace(
role="assistant",
content="async result",
function_call=None,
tool_calls=None,
audio=None,
)
)
],
usage=SimpleNamespace(prompt_tokens=5, completion_tokens=2, total_tokens=7),
)
with patch.object(openai_client.chat.completions, "_post", return_value=response):
result = await openai_client.chat.completions.create(
name="unit-openai-async",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "hello"}],
temperature=0,
)
assert result is response
langfuse_memory_client.flush()
span = get_span("unit-openai-async")
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT) == {
"role": "assistant",
"content": "async result",
}
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 5,
"completion_tokens": 2,
"total_tokens": 7,
}
@pytest.mark.asyncio
async def test_openai_async_stream_preserves_original_stream_contract(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.AsyncOpenAI(api_key="test")
raw_response = DummyAsyncResponse()
raw_stream = DummyOpenAIAsyncStream(_make_chat_stream_chunks(), raw_response)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = await openai_client.chat.completions.create(
name="unit-openai-native-async-stream",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
assert stream is raw_stream
assert isinstance(stream, lf_openai.AsyncStream)
assert stream.response is raw_response
assert hasattr(stream, "aclose")
chunks = []
async for chunk in stream:
chunks.append(chunk)
await stream.aclose()
assert len(chunks) == 2
assert raw_response.closed is True
langfuse_memory_client.flush()
span = get_span("unit-openai-native-async-stream")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
assert span.attributes["langfuse.observation.metadata.finish_reason"] == "stop"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
@pytest.mark.asyncio
async def test_openai_async_stream_supports_anext(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.AsyncOpenAI(api_key="test")
raw_stream = DummyOpenAIAsyncStream(
_make_chat_stream_chunks(), DummyAsyncResponse()
)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = await openai_client.chat.completions.create(
name="unit-openai-native-async-anext",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
first = await stream.__anext__()
second = await stream.__anext__()
assert first.choices[0].delta.content == "2"
assert second.choices[0].finish_reason == "stop"
with pytest.raises(StopAsyncIteration):
await stream.__anext__()
langfuse_memory_client.flush()
span = get_span("unit-openai-native-async-anext")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
assert span.attributes["langfuse.observation.metadata.finish_reason"] == "stop"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"prompt_tokens": 3,
"completion_tokens": 1,
"total_tokens": 4,
}
@pytest.mark.asyncio
async def test_openai_async_stream_break_still_finalizes_generation(
langfuse_memory_client, get_span
):
openai_client = lf_openai.AsyncOpenAI(api_key="test")
raw_stream = DummyOpenAIAsyncStream(
_make_chat_stream_chunks(), DummyAsyncResponse()
)
with patch.object(openai_client.chat.completions, "_post", return_value=raw_stream):
stream = await openai_client.chat.completions.create(
name="unit-openai-native-async-stream-break",
model="gpt-4o-mini",
messages=[{"role": "user", "content": "1 + 1 = ?"}],
temperature=0,
stream=True,
)
async for chunk in stream:
assert chunk.choices[0].delta.content == "2"
break
# Async generator finalizers are scheduled across event-loop turns.
for _ in range(5):
await asyncio.sleep(0)
langfuse_memory_client.flush()
span = get_span("unit-openai-native-async-stream-break")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT] == "2"
assert (
span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_COMPLETION_START_TIME]
is not None
)
def test_fallback_sync_stream_finalizes_once():
resource = SimpleNamespace(object="Completions", type="chat")
generation = DummyGeneration()
def fallback_stream():
yield _make_single_chunk_stream()
wrapper = lf_openai_module.LangfuseResponseGeneratorSync(
resource=resource,
response=fallback_stream(),
generation=generation,
)
list(wrapper)
with pytest.raises(StopIteration):
next(wrapper)
assert generation.end_calls == 1
def test_fallback_sync_stream_exit_finalizes_once():
resource = SimpleNamespace(object="Completions", type="chat")
generation = DummyGeneration()
def fallback_stream():
yield _make_single_chunk_stream()
wrapper = lf_openai_module.LangfuseResponseGeneratorSync(
resource=resource,
response=fallback_stream(),
generation=generation,
)
wrapper.__exit__(None, None, None)
assert generation.end_calls == 1
@pytest.mark.asyncio
async def test_fallback_async_stream_finalizes_once():
resource = SimpleNamespace(object="Completions", type="chat")
generation = DummyGeneration()
async def fallback_stream():
yield _make_single_chunk_stream()
wrapper = lf_openai_module.LangfuseResponseGeneratorAsync(
resource=resource,
response=fallback_stream(),
generation=generation,
)
async for _ in wrapper:
pass
with pytest.raises(StopAsyncIteration):
await wrapper.__anext__()
assert generation.end_calls == 1
@pytest.mark.asyncio
async def test_fallback_async_stream_close_and_exit_finalize_once():
resource = SimpleNamespace(object="Completions", type="chat")
generation = DummyGeneration()
response = DummyFallbackAsyncResponse()
wrapper = lf_openai_module.LangfuseResponseGeneratorAsync(
resource=resource,
response=response,
generation=generation,
)
await wrapper.close()
await wrapper.__aexit__(None, None, None)
assert generation.end_calls == 1
assert response.close_calls == 1
assert response.aclose_calls == 1
@pytest.mark.asyncio
async def test_fallback_async_stream_aclose_finalizes_once():
resource = SimpleNamespace(object="Completions", type="chat")
generation = DummyGeneration()
async def fallback_stream():
yield _make_single_chunk_stream()
wrapper = lf_openai_module.LangfuseResponseGeneratorAsync(
resource=resource,
response=fallback_stream(),
generation=generation,
)
await wrapper.aclose()
assert generation.end_calls == 1
def test_embedding_exports_dimensions_and_count(
langfuse_memory_client, get_span, json_attr
):
openai_client = lf_openai.OpenAI(api_key="test")
response = SimpleNamespace(
model="text-embedding-3-small",
data=[SimpleNamespace(embedding=[0.1, 0.2, 0.3])],
usage=SimpleNamespace(prompt_tokens=2, total_tokens=2),
)
with patch.object(openai_client.embeddings, "_post", return_value=response):
result = openai_client.embeddings.create(
name="unit-openai-embedding",
model="text-embedding-3-small",
input="hello world",
)
assert result is response
langfuse_memory_client.flush()
span = get_span("unit-openai-embedding")
assert span.attributes[LangfuseOtelSpanAttributes.OBSERVATION_TYPE] == "embedding"
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_OUTPUT) == {
"dimensions": 3,
"count": 1,
}
assert json_attr(span, LangfuseOtelSpanAttributes.OBSERVATION_USAGE_DETAILS) == {
"input": 2
}