190proof 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -32028,7 +32028,8 @@ async function prepareAnthropicPayload(payload) {
|
|
|
32028
32028
|
const preparedPayload = {
|
|
32029
32029
|
model: payload.model,
|
|
32030
32030
|
messages: [],
|
|
32031
|
-
functions: payload.functions
|
|
32031
|
+
functions: payload.functions,
|
|
32032
|
+
temperature: payload.temperature
|
|
32032
32033
|
};
|
|
32033
32034
|
for (const message of payload.messages) {
|
|
32034
32035
|
const anthropicContentBlocks = [];
|