-
-
Notifications
You must be signed in to change notification settings - Fork 523
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
972fe1b
commit 275f1d6
Showing
19 changed files
with
526 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Testing/Responses/Fixtures/Threads/Runs/Steps/ThreadRunStepListResponseFixture.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
namespace OpenAI\Testing\Responses\Fixtures\Threads\Runs\Steps; | ||
|
||
final class ThreadRunStepListResponseFixture | ||
{ | ||
public const ATTRIBUTES = [ | ||
'object' => 'list', | ||
'data' => [ | ||
[ | ||
'id' => 'step_1spQXgbAabXFm1YXrwiGIMUz', | ||
'object' => 'thread.run.step', | ||
'created_at' => 1_699_564_106, | ||
'run_id' => 'run_fYijubpOJsKDnvtACWBS8C8r', | ||
'assistant_id' => 'asst_EopvUEMh90bxkNRYEYM81Orc', | ||
'thread_id' => 'thread_3WdOgtVuhD8aUIEx774Whkvo', | ||
'type' => 'message_creation', | ||
'status' => 'completed', | ||
'cancelled_at' => null, | ||
'completed_at' => 1_699_564_119, | ||
'expires_at' => null, | ||
'failed_at' => null, | ||
'last_error' => null, | ||
'step_details' => [ | ||
'type' => 'message_creation', | ||
'message_creation' => [ | ||
'message_id' => 'msg_i404PxKbB92d0JAmdOIcX7vA', | ||
], | ||
], | ||
], | ||
], | ||
'first_id' => 'step_1spQXgbAabXFm1YXrwiGIMUz', | ||
'last_id' => 'step_1spQXgbAabXFm1YXrwiGIMUz', | ||
'has_more' => false, | ||
]; | ||
} |
28 changes: 28 additions & 0 deletions
28
src/Testing/Responses/Fixtures/Threads/Runs/Steps/ThreadRunStepResponseFixture.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace OpenAI\Testing\Responses\Fixtures\Threads\Runs\Steps; | ||
|
||
final class ThreadRunStepResponseFixture | ||
{ | ||
public const ATTRIBUTES = [ | ||
'id' => 'step_1spQXgbAabXFm1YXrwiGIMUz', | ||
'object' => 'thread.run.step', | ||
'created_at' => 1_699_564_106, | ||
'run_id' => 'run_fYijubpOJsKDnvtACWBS8C8r', | ||
'assistant_id' => 'asst_EopvUEMh90bxkNRYEYM81Orc', | ||
'thread_id' => 'thread_3WdOgtVuhD8aUIEx774Whkvo', | ||
'type' => 'message_creation', | ||
'status' => 'completed', | ||
'cancelled_at' => null, | ||
'completed_at' => 1_699_564_119, | ||
'expires_at' => null, | ||
'failed_at' => null, | ||
'last_error' => null, | ||
'step_details' => [ | ||
'type' => 'message_creation', | ||
'message_creation' => [ | ||
'message_id' => 'msg_i404PxKbB92d0JAmdOIcX7vA', | ||
], | ||
], | ||
]; | ||
} |
Oops, something went wrong.