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 56e6aaf commit f6a9106Copy full SHA for f6a9106
tests/tollamaChat.m
@@ -69,6 +69,14 @@ function stopSequences(testCase)
69
testCase.verifyEqual(response2, extractBefore(response1,"1"));
70
end
71
72
+ function seedFixesResult(testCase)
73
+ chat = ollamaChat("mistral");
74
+ response1 = generate(chat,"hi",Seed=1234);
75
+ response2 = generate(chat,"hi",Seed=1234);
76
+ testCase.verifyEqual(response1,response2);
77
+ end
78
+
79
80
function streamFunc(testCase)
81
function seen = sf(str)
82
persistent data;
0 commit comments