Skip to content

Commit

Permalink
chore: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KavithaSiva committed Jul 22, 2024
1 parent e30fc3d commit 11f02c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gen-ai-hub/src/orchestration/orchestration-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ export function constructCompletionPostRequest(
},
llm_module_config: input.llmConfig
},
...(input.prompt?.template_params && {
...(input.prompt.template_params && {
input_params: input.prompt.template_params
}),
...(input.prompt?.messages_history && {
...(input.prompt.messages_history && {
messages_history: input.prompt.messages_history
})
}
Expand Down

0 comments on commit 11f02c7

Please sign in to comment.