Litellm Backend (#502)

This commit is contained in:
胡译文
2024-06-08 03:24:28 +08:00
committed by GitHub
parent 651a23ee7c
commit 87260b7bfd
5 changed files with 136 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
import json
import unittest
from sglang import LiteLLM, set_default_backend
from sglang.test.test_programs import test_mt_bench, test_stream
class TestAnthropicBackend(unittest.TestCase):
backend = None
chat_backend = None
def setUp(self):
cls = type(self)
if cls.backend is None:
cls.backend = LiteLLM("gpt-3.5-turbo")
set_default_backend(cls.backend)
def test_mt_bench(self):
test_mt_bench()
def test_stream(self):
test_stream()
if __name__ == "__main__":
unittest.main(warnings="ignore")