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 ccc69e4 commit 3bae178Copy full SHA for 3bae178
tests/tollamaChat.m
@@ -125,7 +125,9 @@ function reactToEndpoint(testCase)
125
testCase.verifyWarningFree(@() generate(chat,"dummy"));
126
% also make sure "http://" can be included
127
chat = ollamaChat("qwen2:0.5b",Endpoint="http://" + getenv("SECOND_OLLAMA_ENDPOINT"));
128
- testCase.verifyWarningFree(@() generate(chat,"dummy"));
+ response = generate(chat,"some input");
129
+ testCase.verifyClass(response,'string');
130
+ testCase.verifyGreaterThan(strlength(response),0);
131
end
132
133
function doReturnErrors(testCase)
0 commit comments