-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tracing to OpenAI autologging #12267
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ class Message(BaseModel): | |
|
||
class ChatPayload(BaseModel): | ||
messages: List[Message] | ||
temperature: float = 0 | ||
stream: bool = False | ||
|
||
|
||
|
@@ -79,6 +80,11 @@ async def chat_response_stream(): | |
|
||
@app.post("/chat/completions") | ||
async def chat(payload: ChatPayload): | ||
if not 0.0 <= payload.temperature <= 2.0: | ||
return fastapi.Response( | ||
content="Temperature must be between 0.0 and 2.0", | ||
status_code=400, | ||
) | ||
Comment on lines
+83
to
+87
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this lets us test error behaviours. |
||
if payload.stream: | ||
# SSE stream | ||
return StreamingResponse( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import openai | ||
import pytest | ||
|
||
import mlflow | ||
from mlflow.tracing.constant import SpanAttributeKey | ||
|
||
from tests.openai.conftest import is_v1 | ||
|
||
|
||
@pytest.fixture | ||
def client(mock_openai): | ||
return openai.OpenAI(api_key="test", base_url=mock_openai) | ||
|
||
|
||
@pytest.mark.skipif(not is_v1, reason="Requires OpenAI SDK v1") | ||
def test_chat_completions_autolog_tracing_success(client, monkeypatch): | ||
mlflow.openai.autolog() | ||
messages = [{"role": "user", "content": "test"}] | ||
with mlflow.start_run(): | ||
client.chat.completions.create( | ||
messages=messages, | ||
model="gpt-3.5-turbo", | ||
temperature=0, | ||
) | ||
|
||
trace = mlflow.get_last_active_trace() | ||
assert trace.info.status == "OK" | ||
|
||
assert len(trace.data.spans) == 1 | ||
span = trace.data.spans[0] | ||
assert span.name == "Completions" | ||
assert span.attributes[SpanAttributeKey.INPUTS]["messages"][0]["content"] == "test" | ||
assert span.attributes[SpanAttributeKey.OUTPUTS]["id"] == "chatcmpl-123" | ||
|
||
|
||
@pytest.mark.skipif(not is_v1, reason="Requires OpenAI SDK v1") | ||
def test_chat_completions_autolog_tracing_error(client, monkeypatch): | ||
mlflow.openai.autolog() | ||
messages = [{"role": "user", "content": "test"}] | ||
with mlflow.start_run(), pytest.raises( | ||
openai.BadRequestError, match="Temperature must be between 0.0 and 2.0" | ||
): | ||
client.chat.completions.create( | ||
messages=messages, | ||
model="gpt-3.5-turbo", | ||
temperature=5.0, | ||
) | ||
|
||
trace = mlflow.get_last_active_trace() | ||
assert trace.info.status == "ERROR" | ||
|
||
assert len(trace.data.spans) == 1 | ||
span = trace.data.spans[0] | ||
assert span.name == "Completions" | ||
assert span.attributes[SpanAttributeKey.INPUTS]["messages"][0]["content"] == "test" | ||
assert span.attributes.get(SpanAttributeKey.OUTPUTS) is None | ||
|
||
assert span.events[0].name == "exception" | ||
assert span.events[0].attributes["exception.type"] == "openai.BadRequestError" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late review, thanks for the PR!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no worries :)