We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 270d8a0 commit 7b0890cCopy full SHA for 7b0890c
core/src/test/scala/sttp/openai/fixtures/BatchFixture.scala
@@ -2,7 +2,7 @@ package sttp.openai.fixtures
2
3
object BatchFixture {
4
5
- val jsonCreateBatchRequest = """{
+ val jsonCreateBatchRequest: String = """{
6
| "input_file_id": "file-id",
7
| "endpoint": "/v1/chat/completions",
8
| "completion_window": "24h",
@@ -12,7 +12,7 @@ object BatchFixture {
12
| }
13
|}""".stripMargin
14
15
- val jsonCreateBatchResponse = """{
+ val jsonCreateBatchResponse: String = """{
16
| "id": "batch_abc123",
17
| "object": "batch",
18
| "endpoint": "/v1/completions",
0 commit comments