We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19ee94 commit 1772b5aCopy full SHA for 1772b5a
openai-client/src/main/scala/io/cequence/openaiscala/service/impl/OpenAIServiceImpl.scala
@@ -114,8 +114,7 @@ private[service] trait OpenAIServiceImpl
114
Param.assistant_id -> Some(assistantId),
115
Param.thread -> thread.map(Json.toJson(_)),
116
Param.instructions -> Some(instructions),
117
- // TODO: tools are ignored?
118
- // Param.tools -> Some(Json.toJson(tools)),
+ Param.tools -> Some(Json.toJson(tools)),
119
Param.tool_resources -> toolResources.map(Json.toJson(_)),
120
Param.tool_choice -> toolChoice.map(Json.toJson(_))
121
)
0 commit comments