Skip to content

Commit

Permalink
enable standard tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Sep 12, 2024
1 parent 6a52d21 commit d3a9b67
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from langchain_upstage import ChatUpstage


@pytest.mark.skip("fix after following openai spec")
class TestUpstageStandard(ChatModelIntegrationTests):
@property
def chat_model_class(self) -> Type[BaseChatModel]:
Expand All @@ -20,3 +19,7 @@ def chat_model_params(self) -> dict:
return {
"model": "solar-1-mini-chat",
}

@pytest.mark.xfail(reason="Not implemented.")
def test_usage_metadata_streaming(self, model: BaseChatModel) -> None:
super().test_usage_metadata_streaming(model)

0 comments on commit d3a9b67

Please sign in to comment.