-
Notifications
You must be signed in to change notification settings - Fork 178
[DO NOT MERGE] feat(examples): add rest examples from docs #2030
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
Closed
aleskalfas
wants to merge
19
commits into
main
from
2008-Convert-the-rest-of-the-agents-from-the-docs-into-examples
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
15c136e
feat(examples): add file processing example
aleskalfas aaaab94
feat(examples): add basic configuration example
aleskalfas dc7af99
feat(examples): add llm access example
aleskalfas d2129bb
fixup!
aleskalfas 9f60e6f
feat(examples): add dynamic form example
aleskalfas 293ef09
feat(examples): add trajectory basic usage example
aleskalfas 92696a6
feat(examples): add citation basic usage example
aleskalfas ee15f59
feat(examples): add basic setting example
aleskalfas 37e984c
feat(examples): add basic secrets example
aleskalfas bbaebaf
feat(examples): add basic environment variables example
aleskalfas ce86833
feat(examples): add error various examples
aleskalfas e7e1425
feat(examples): add tool call approval example
aleskalfas a4f9625
feat(examples): add canvas example
aleskalfas 06aefa9
feat(examples): add simple rag example
aleskalfas ea975d6
fix(example): rename file processing example
aleskalfas a06f445
fix(examples): rename llm access example
aleskalfas e41ef93
feat(examples): add rag in conversation agent example
aleskalfas c2ac70c
feat(examples): add mcp github agent example
aleskalfas b21827d
feat(examples): add custom mcp client wit oauth example
aleskalfas 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
57 changes: 57 additions & 0 deletions
57
...ack-server/tests/e2e/examples/agent-integration/agent-details/test_basic_configuration.py
This file contains hidden or 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,57 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
|
|
||
| from agentstack_server.domain.constants import AGENT_DETAIL_EXTENSION_URI | ||
| from agentstack_server.utils.a2a import get_extension | ||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_basic_configuration_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/agent-details/basic-configuration" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| agent_card = running_example.agent_card | ||
|
|
||
| with subtests.test("agent card has correct name"): | ||
| assert agent_card.name == "Example Research Assistant" | ||
|
|
||
| with subtests.test("agent card has two skills"): | ||
| assert agent_card.skills is not None | ||
| assert len(agent_card.skills) == 2 | ||
|
|
||
| skill_ids = {skill.id for skill in agent_card.skills} | ||
| assert skill_ids == {"research", "summarization"} | ||
|
|
||
| with subtests.test("agent detail extension is configured"): | ||
| agent_detail = get_extension(agent_card, AGENT_DETAIL_EXTENSION_URI) | ||
| assert agent_detail is not None | ||
|
|
||
| params = agent_detail.model_dump()["params"] | ||
| assert params["interaction_mode"] == "multi-turn" | ||
| assert ( | ||
| params["user_greeting"] == "Hi there! I can help you research topics or summarize uploaded documents." | ||
| ) | ||
| assert params["framework"] == "BeeAI Framework" | ||
| assert params["source_code_url"] == "https://github.com/example/example-research-assistant" | ||
|
|
||
| with subtests.test("agent detail has author info"): | ||
| agent_detail = get_extension(agent_card, AGENT_DETAIL_EXTENSION_URI) | ||
| params = agent_detail.model_dump()["params"] | ||
|
|
||
| assert params["author"]["name"] == "Agent Stack Team" | ||
| assert params["author"]["email"] == "team@example.com" | ||
|
|
||
| with subtests.test("agent detail has tools"): | ||
| agent_detail = get_extension(agent_card, AGENT_DETAIL_EXTENSION_URI) | ||
| params = agent_detail.model_dump()["params"] | ||
|
|
||
| tools = params["tools"] | ||
| assert len(tools) == 2 | ||
|
|
||
| tool_names = {tool["name"] for tool in tools} | ||
| assert tool_names == {"Web Search", "Document Reader"} | ||
55 changes: 55 additions & 0 deletions
55
...ntstack-server/tests/e2e/examples/agent-integration/agent-settings/test_basic_settings.py
This file contains hidden or 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,55 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions.ui.settings import SettingsExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_basic_settings_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/agent-settings/basic-settings" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| settings_uri = SettingsExtensionSpec.URI | ||
|
|
||
| with subtests.test("agent responds based on enabled thinking setting"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| message.metadata = { | ||
| settings_uri: { | ||
| "values": { | ||
| "thinking_group": { | ||
| "type": "checkbox_group", | ||
| "values": {"thinking": {"value": True}}, | ||
| } | ||
| } | ||
| } | ||
| } | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
| assert "Thinking mode is enabled" in task.history[-1].parts[0].root.text | ||
|
|
||
| with subtests.test("agent responds based on disabled thinking setting"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| message.metadata = { | ||
| settings_uri: { | ||
| "values": { | ||
| "thinking_group": { | ||
| "type": "checkbox_group", | ||
| "values": {"thinking": {"value": False}}, | ||
| } | ||
| } | ||
| } | ||
| } | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
| assert "Thinking mode is disabled" in task.history[-1].parts[0].root.text |
65 changes: 65 additions & 0 deletions
65
apps/agentstack-server/tests/e2e/examples/agent-integration/canvas/test_canvas_with_llm.py
This file contains hidden or 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,65 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions.ui.canvas import CanvasExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_canvas_with_llm_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/canvas/canvas-with-llm" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| canvas_uri = CanvasExtensionSpec.URI | ||
|
|
||
| with subtests.test("agent generates code artifact"): | ||
| message = create_text_message_object(content="Write a hello world program") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
|
|
||
| # Verify artifact is returned (the agent uses a mocked LLM response) | ||
| assert len(task.artifacts) > 0 | ||
| artifact = task.artifacts[0] | ||
| assert artifact.name == "Response" | ||
|
|
||
| # Verify the artifact contains the expected mock response | ||
| artifact_text = "".join(part.root.text for part in artifact.parts if hasattr(part.root, "text")) | ||
| assert "Hello from LLM!" in artifact_text | ||
|
|
||
| with subtests.test("agent updates artifact via canvas edit"): | ||
| # Use the artifact from the previous test | ||
| artifact_id = artifact.artifact_id | ||
|
|
||
| # Get the artifact text to determine indices | ||
| artifact_text = "".join(part.root.text for part in artifact.parts if hasattr(part.root, "text")) | ||
|
|
||
| # Send edit request for a portion of the code | ||
| message = create_text_message_object(content="Change print to use f-string") | ||
| message.context_id = running_example.context.id | ||
| message.metadata = { | ||
| canvas_uri: { | ||
| "artifact_id": artifact_id, | ||
| "start_index": 0, | ||
| "end_index": min(50, len(artifact_text)), # Select first 50 chars | ||
| "description": "Change print to use f-string", | ||
| } | ||
| } | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
|
|
||
| # Verify updated artifact is returned | ||
| assert len(task.artifacts) > 0 | ||
| updated_artifact = task.artifacts[0] | ||
|
|
||
| # Verify the response contains the edit prompt context | ||
| updated_text = "".join(part.root.text for part in updated_artifact.parts if hasattr(part.root, "text")) | ||
| assert "editing existing code" in updated_text.lower() or "selected" in updated_text.lower() |
40 changes: 40 additions & 0 deletions
40
...tstack-server/tests/e2e/examples/agent-integration/citations/test_citation_basic_usage.py
This file contains hidden or 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,40 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions import CitationExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_citation_basic_usage_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/citations/citation-basic-usage" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent responds with text and citation metadata"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
|
|
||
| # Verify response text | ||
| response_text = task.history[-1].parts[0].root.text | ||
| assert "Python is the most popular programming language" in response_text | ||
|
|
||
| # Verify citation metadata exists | ||
| citation_uri = CitationExtensionSpec.URI | ||
| response_metadata = task.history[-1].metadata | ||
| assert response_metadata is not None | ||
| assert citation_uri in response_metadata | ||
|
|
||
| # Verify citation content | ||
| citations = response_metadata[citation_uri]["citations"] | ||
| assert len(citations) == 1 | ||
| assert citations[0]["url"] == "https://survey.stackoverflow.com/2023" | ||
| assert citations[0]["title"] == "Stack Overflow Developer Survey 2023" |
25 changes: 25 additions & 0 deletions
25
...er/tests/e2e/examples/agent-integration/env-variables/test_basic_environment_variables.py
This file contains hidden or 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,25 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_basic_environment_variables_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/env-variables/basic-environment-variables" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent responds based on default env variable value"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.completed, f"Fail: {task.status.message.parts[0].root.text}" | ||
| # THINKING_ENABLED defaults to false when not set | ||
| assert "Thinking mode is disabled" in task.history[-1].parts[0].root.text |
44 changes: 44 additions & 0 deletions
44
...agentstack-server/tests/e2e/examples/agent-integration/error/test_adding_error_context.py
This file contains hidden or 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,44 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions.ui.error import ErrorExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_adding_error_context_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/error/adding-error-context" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent includes context in error metadata"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.failed | ||
|
|
||
| # Verify error metadata contains context | ||
| error_uri = ErrorExtensionSpec.URI | ||
| error_metadata = task.status.message.metadata | ||
| assert error_metadata is not None | ||
| assert error_uri in error_metadata | ||
|
|
||
| error_data = error_metadata[error_uri] | ||
|
|
||
| # Verify context is included | ||
| assert error_data["context"] is not None | ||
| assert error_data["context"]["request_id"] == "req-123" | ||
| assert error_data["context"]["user_id"] == 42 | ||
|
|
||
| # Verify stack trace is included (include_stacktrace=True) | ||
| assert error_data["stack_trace"] is not None | ||
|
|
||
| # Verify error details | ||
| assert error_data["error"]["title"] == "ValueError" | ||
| assert error_data["error"]["message"] == "Something went wrong!" |
37 changes: 37 additions & 0 deletions
37
...tstack-server/tests/e2e/examples/agent-integration/error/test_advanced_error_reporting.py
This file contains hidden or 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,37 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions.ui.error import ErrorExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_advanced_error_reporting_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/error/advanced-error-reporting" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent reports error with stack trace"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.failed | ||
|
|
||
| # Verify error message content | ||
| error_text = task.status.message.parts[0].root.text | ||
| assert "ValueError" in error_text | ||
| assert "Something went wrong!" in error_text | ||
| assert "Stack Trace" in error_text | ||
|
|
||
| # Verify error metadata includes stack trace | ||
| error_uri = ErrorExtensionSpec.URI | ||
| error_metadata = task.status.message.metadata | ||
| assert error_metadata is not None | ||
| assert error_uri in error_metadata | ||
| assert error_metadata[error_uri]["stack_trace"] is not None |
42 changes: 42 additions & 0 deletions
42
...tstack-server/tests/e2e/examples/agent-integration/error/test_multiple_errors_handling.py
This file contains hidden or 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,42 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
| from agentstack_sdk.a2a.extensions.ui.error import ErrorExtensionSpec | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_multiple_errors_handling_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/error/multiple-errors-handling" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent reports multiple errors from ExceptionGroup"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.failed | ||
|
|
||
| # Verify error metadata contains structured error data | ||
| error_uri = ErrorExtensionSpec.URI | ||
| error_metadata = task.status.message.metadata | ||
| assert error_metadata is not None | ||
| assert error_uri in error_metadata | ||
|
|
||
| error_data = error_metadata[error_uri]["error"] | ||
| # ExceptionGroup produces an ErrorGroup with list of errors | ||
| assert "errors" in error_data | ||
| errors = error_data["errors"] | ||
| assert len(errors) == 2 | ||
|
|
||
| # Verify both errors are present | ||
| error_titles = {e["title"] for e in errors} | ||
| error_messages = {e["message"] for e in errors} | ||
| assert error_titles == {"ValueError", "TypeError"} | ||
| assert error_messages == {"First error", "Second error"} |
24 changes: 24 additions & 0 deletions
24
...tstack-server/tests/e2e/examples/agent-integration/error/test_standard_error_reporting.py
This file contains hidden or 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,24 @@ | ||
| # Copyright 2025 © BeeAI a Series of LF Projects, LLC | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| import pytest | ||
| from a2a.client.helpers import create_text_message_object | ||
| from a2a.types import TaskState | ||
|
|
||
| from tests.e2e.examples.conftest import run_example | ||
|
|
||
| pytestmark = pytest.mark.e2e | ||
|
|
||
|
|
||
| @pytest.mark.usefixtures("clean_up", "setup_platform_client") | ||
| async def test_standard_error_reporting_example(subtests, get_final_task_from_stream, a2a_client_factory): | ||
| example_path = "agent-integration/error/standard-error-reporting" | ||
|
|
||
| async with run_example(example_path, a2a_client_factory) as running_example: | ||
| with subtests.test("agent reports error when exception is raised"): | ||
| message = create_text_message_object(content="Hello") | ||
| message.context_id = running_example.context.id | ||
| task = await get_final_task_from_stream(running_example.client.send_message(message)) | ||
|
|
||
| assert task.status.state == TaskState.failed | ||
| assert "Something went wrong!" in task.status.message.parts[0].root.text |
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.
Uh oh!
There was an error while loading. Please reload this page.