Skip to content

Commit

Permalink
fix(sdk): update the openai api format reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Lerri-Cofannos committed Sep 8, 2023
1 parent 2ebdeb2 commit 4b7de26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk-python/test/openai_api/reference_format.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"\n {\n \"id\": \"chatcmpl-123\",\n \"object\": \"completion\",\n \"created\": 1677652288,\n \"model\": \"gpt-3.5-turbo-0613\",\n \"choices\": [{\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"\\n\\nHello there, how may I assist you today?\",\n },\n \"finish_reason\": \"stop\"\n }],\n \"usage\": {\n \"prompt_tokens\": 9,\n \"completion_tokens\": 12,\n \"total_tokens\": 21\n }\n }\n "
"\n {\n \"id\": \"chatcmpl-123\",\n \"object\": \"chat.completion\",\n \"created\": 1677652288,\n \"model\": \"gpt-3.5-turbo-0613\",\n \"choices\": [{\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"\\n\\nHello there, how may I assist you today?\",\n },\n \"finish_reason\": \"stop\"\n }],\n \"usage\": {\n \"prompt_tokens\": 9,\n \"completion_tokens\": 12,\n \"total_tokens\": 21\n }\n }\n "

0 comments on commit 4b7de26

Please sign in to comment.