Skip to content

Commit 71766c3

Browse files
committed
add final changes
1 parent 47d55f5 commit 71766c3

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727
dependencies = [
2828
"cleanlab-tlm~=1.1,>=1.1.14",
29-
"codex-sdk==0.1.0a23",
29+
"codex-sdk==0.1.0a24",
3030
"pydantic>=2.0.0, <3",
3131
]
3232

tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
openai_messages_bad_no_user,
55
openai_messages_conversational,
66
openai_messages_single_turn,
7+
openai_tools,
78
)
89

910
__all__ = [
@@ -14,4 +15,5 @@
1415
"openai_messages_conversational",
1516
"openai_messages_single_turn",
1617
"openai_messages_bad_no_user",
18+
"openai_tools",
1719
]

tests/test_project.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def test_project_validate_with_dict_response(
7575
rewritten_question=None,
7676
custom_metadata=None,
7777
eval_scores=None,
78+
tools=None,
7879
)
7980

8081
# conversational
@@ -97,6 +98,7 @@ def test_project_validate_with_dict_response(
9798
rewritten_question=None,
9899
custom_metadata=None,
99100
eval_scores=None,
101+
tools=None,
100102
),
101103
call(
102104
FAKE_PROJECT_ID,
@@ -107,6 +109,7 @@ def test_project_validate_with_dict_response(
107109
rewritten_question=None,
108110
custom_metadata=None,
109111
eval_scores=None,
112+
tools=None,
110113
),
111114
]
112115
)

0 commit comments

Comments
 (0)