TestFireworksStandard Class — langchain Architecture
Architecture documentation for the TestFireworksStandard class in test_standard.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD 92181c5b_6a7e_e00b_013a_8f250f15615f["TestFireworksStandard"] 971e928f_9c9b_ce7a_b93d_e762f2f5aa54["ChatModelIntegrationTests"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|extends| 971e928f_9c9b_ce7a_b93d_e762f2f5aa54 e431ef37_55a2_31f9_f55f_291e481c2d99["test_standard.py"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|defined in| e431ef37_55a2_31f9_f55f_291e481c2d99 bb99daf1_6487_a25f_9956_f96c6af5347b["chat_model_class()"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|method| bb99daf1_6487_a25f_9956_f96c6af5347b 2a7b7a03_1fbb_3488_b03e_585b6ab92cf6["chat_model_params()"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|method| 2a7b7a03_1fbb_3488_b03e_585b6ab92cf6 867aa682_4cc8_5752_ceb7_6e16ffb8bc66["test_tool_message_histories_list_content()"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|method| 867aa682_4cc8_5752_ceb7_6e16ffb8bc66 2d5456f4_1662_a747_2fc3_c7ab417b790f["supports_json_mode()"] 92181c5b_6a7e_e00b_013a_8f250f15615f -->|method| 2d5456f4_1662_a747_2fc3_c7ab417b790f
Relationship Graph
Source Code
libs/partners/fireworks/tests/integration_tests/test_standard.py lines 13–33
class TestFireworksStandard(ChatModelIntegrationTests):
@property
def chat_model_class(self) -> type[BaseChatModel]:
return ChatFireworks
@property
def chat_model_params(self) -> dict:
return {
"model": "accounts/fireworks/models/kimi-k2-instruct-0905",
"temperature": 0,
}
@pytest.mark.xfail(reason="Not yet implemented.")
def test_tool_message_histories_list_content(
self, model: BaseChatModel, my_adder_tool: BaseTool
) -> None:
super().test_tool_message_histories_list_content(model, my_adder_tool)
@property
def supports_json_mode(self) -> bool:
return True
Extends
Source
Frequently Asked Questions
What is the TestFireworksStandard class?
TestFireworksStandard is a class in the langchain codebase, defined in libs/partners/fireworks/tests/integration_tests/test_standard.py.
Where is TestFireworksStandard defined?
TestFireworksStandard is defined in libs/partners/fireworks/tests/integration_tests/test_standard.py at line 13.
What does TestFireworksStandard extend?
TestFireworksStandard extends ChatModelIntegrationTests.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free