Skip to content

Commit

Permalink
Fixed formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-mardeni committed May 8, 2024
1 parent 21c541a commit bb88763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/auto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function runTask(
openaiApiKey: options.openaiApiKey,
openaiBaseUrl: options.openaiBaseUrl,
openaiDefaultQuery: options.openaiDefaultQuery,
openaiDefaultHeaders: options.openaiDefaultHeaders
openaiDefaultHeaders: options.openaiDefaultHeaders,
}
: undefined,
});
Expand Down
2 changes: 1 addition & 1 deletion src/completeTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const completeTask = async (
apiKey: task.options?.openaiApiKey,
baseURL: task.options?.openaiBaseUrl,
defaultQuery: task.options?.openaiDefaultQuery,
defaultHeaders: task.options?.openaiDefaultHeaders
defaultHeaders: task.options?.openaiDefaultHeaders,
});

let lastFunctionResult: null | { errorMessage: string } | { query: string } =
Expand Down

0 comments on commit bb88763

Please sign in to comment.