File tree 2 files changed +4
-5
lines changed
openai-core/src/main/scala/io/cequence/openaiscala 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ object RetryHelpers {
44
44
if (attempt < maxAttempts) {
45
45
fun().recoverWith {
46
46
case e : Throwable if isRetryable(e) =>
47
- val failureMessagePart = failureMessage.map(message => message.stripSuffix(" ." ) + " . " ).getOrElse(" " )
47
+ val failureMessagePart =
48
+ failureMessage.map(message => message.stripSuffix(" ." ) + " . " ).getOrElse(" " )
48
49
49
50
log.foreach(
50
51
_(
Original file line number Diff line number Diff line change @@ -1594,8 +1594,7 @@ trait OpenAIService extends OpenAICoreService {
1594
1594
* A Future containing the Response object.
1595
1595
*
1596
1596
* @see
1597
- * <a href="https://platform.openai.com/docs/api-reference/responses/get">OpenAI
1598
- * Doc</a>
1597
+ * <a href="https://platform.openai.com/docs/api-reference/responses/get">OpenAI Doc</a>
1599
1598
*/
1600
1599
def getModelResponse (
1601
1600
responseId : String ,
@@ -1637,8 +1636,7 @@ trait OpenAIService extends OpenAICoreService {
1637
1636
* A list of input item objects.
1638
1637
*
1639
1638
* @see
1640
- * <a
1641
- * href="https://platform.openai.com/docs/api-reference/responses/input-items">OpenAI
1639
+ * <a href="https://platform.openai.com/docs/api-reference/responses/input-items">OpenAI
1642
1640
* Doc</a>
1643
1641
*/
1644
1642
def listModelResponseInputItems (
You can’t perform that action at this time.
0 commit comments