We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b073b83 commit 971883dCopy full SHA for 971883d
tests/test_llm_api.py
@@ -122,6 +122,10 @@ def test_mistral_model():
122
config = LLMConfig(provider="mistral", model_name="pixtral-large-latest")
123
test_llm(config, "Describe this image", "assets/examples/test.png")
124
125
+def test_moonshot_model():
126
+ config = LLMConfig(provider="moonshot", model_name="moonshot-v1-32k-vision-preview")
127
+ test_llm(config, "Describe this image", "assets/examples/test.png")
128
+
129
if __name__ == "__main__":
130
# test_openai_model()
131
# test_google_model()
0 commit comments