From 0af4c9206fe94d06d8aacd33de63f8fa5963a87c Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 28 May 2024 14:54:58 -0700 Subject: [PATCH] test - openai batches file --- litellm/tests/openai_batch_completions.jsonl | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 litellm/tests/openai_batch_completions.jsonl diff --git a/litellm/tests/openai_batch_completions.jsonl b/litellm/tests/openai_batch_completions.jsonl new file mode 100644 index 0000000000..05448952a0 --- /dev/null +++ b/litellm/tests/openai_batch_completions.jsonl @@ -0,0 +1,2 @@ +{"custom_id": "request-1", "method": "POST", "url": "/v1/chat/completions", "body": {"model": "gpt-3.5-turbo-0125", "messages": [{"role": "system", "content": "You are a helpful assistant."},{"role": "user", "content": "Hello world!"}],"max_tokens": 10}} +{"custom_id": "request-2", "method": "POST", "url": "/v1/chat/completions", "body": {"model": "gpt-3.5-turbo-0125", "messages": [{"role": "system", "content": "You are an unhelpful assistant."},{"role": "user", "content": "Hello world!"}],"max_tokens": 10}} \ No newline at end of file