Skip to content

Commit 39fd74d

Browse files
committed
.
1 parent 0dbfb0c commit 39fd74d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

tests/integrations/langchain/test_langchain.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ def test_langchain_agent(
158158
model_name="gpt-3.5-turbo",
159159
temperature=0,
160160
openai_api_key="badkey",
161+
streaming=True,
161162
)
162163
agent = create_openai_tools_agent(llm, [get_word_length], prompt)
163164

@@ -232,6 +233,7 @@ def test_langchain_error(sentry_init, capture_events):
232233
model_name="gpt-3.5-turbo",
233234
temperature=0,
234235
openai_api_key="badkey",
236+
streaming=True,
235237
)
236238
agent = create_openai_tools_agent(llm, [get_word_length], prompt)
237239

@@ -327,6 +329,7 @@ def test_span_origin(sentry_init, capture_events):
327329
model_name="gpt-3.5-turbo",
328330
temperature=0,
329331
openai_api_key="badkey",
332+
streaming=True,
330333
)
331334
agent = create_openai_tools_agent(llm, [get_word_length], prompt)
332335

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-05-06T10:55:02.666697+00:00
13+
# Last generated: 2025-05-06T12:02:53.436044+00:00
1414

1515
[tox]
1616
requires =

0 commit comments

Comments
 (0)