File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -157,14 +157,17 @@ void llamaCPP::chatCompletion(
157
157
// To set default value
158
158
159
159
if (jsonBody) {
160
+ // Default values to enable auto caching
161
+ data[" cache_prompt" ] = true ;
162
+ data[" n_keep" ] = -1 ;
163
+
160
164
data[" stream" ] = (*jsonBody).get (" stream" , false ).asBool ();
161
165
data[" n_predict" ] = (*jsonBody).get (" max_tokens" , 500 ).asInt ();
162
166
data[" top_p" ] = (*jsonBody).get (" top_p" , 0.95 ).asFloat ();
163
167
data[" temperature" ] = (*jsonBody).get (" temperature" , 0.8 ).asFloat ();
164
168
data[" frequency_penalty" ] =
165
169
(*jsonBody).get (" frequency_penalty" , 0 ).asFloat ();
166
170
data[" presence_penalty" ] = (*jsonBody).get (" presence_penalty" , 0 ).asFloat ();
167
- data[" cache_prompt" ] = true ;
168
171
const Json::Value &messages = (*jsonBody)[" messages" ];
169
172
for (const auto &message : messages) {
170
173
std::string input_role = message[" role" ].asString ();
You can’t perform that action at this time.
0 commit comments