Skip to content

Commit

Permalink
v0.3.58
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 20, 2024
1 parent 7d3618f commit d1aadbf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@premai/prem-sdk",
"version": "0.3.57",
"version": "0.3.58",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
12 changes: 8 additions & 4 deletions src/types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ export interface components {
/**
* Format: double
* @description What sampling temperature to use, between 0 and 2.
* @default 1
*/
temperature?: number | null;
temperature?: number;
/** @description The tools to use in the completion. */
tools?: {
/**
Expand Down Expand Up @@ -981,8 +982,9 @@ export interface operations {
/**
* Format: double
* @description What sampling temperature to use, between 0 and 2.
* @default 1
*/
temperature?: number | null;
temperature?: number;
/** @description The tools to use in the completion. */
tools?: {
/**
Expand Down Expand Up @@ -1051,8 +1053,9 @@ export interface operations {
/**
* Format: double
* @description What sampling temperature to use, between 0 and 2.
* @default 1
*/
temperature?: number | null;
temperature?: number;
/** @description The tools to use in the completion. */
tools?: {
/**
Expand Down Expand Up @@ -1121,8 +1124,9 @@ export interface operations {
/**
* Format: double
* @description What sampling temperature to use, between 0 and 2.
* @default 1
*/
temperature?: number | null;
temperature?: number;
/** @description The tools to use in the completion. */
tools?: {
/**
Expand Down

0 comments on commit d1aadbf

Please sign in to comment.