"tools/imglab/vscode:/vscode.git/clone" did not exist on "0b8e2a99af95282fd83cdeba841a6ac4194100e9"
Unverified Commit 51fda143 authored by Ying Sheng's avatar Ying Sheng Committed by GitHub
Browse files

Update Readme (#660)


Co-authored-by: default avatarLianmin Zheng <lianminzheng@gmail.com>
parent dc4e4a6a
...@@ -306,7 +306,7 @@ def test_image_qa(): ...@@ -306,7 +306,7 @@ def test_image_qa():
assert ( assert (
"taxi" in state.messages()[-1]["content"] "taxi" in state.messages()[-1]["content"]
or "car" in state.messages()[-1]["content"] or "car" in state.messages()[-1]["content"]
) ), f"{state.messages()[-1]['content']}"
def test_stream(): def test_stream():
......
...@@ -6,9 +6,9 @@ from functools import partial ...@@ -6,9 +6,9 @@ from functools import partial
import numpy as np import numpy as np
import requests import requests
from sglang.backend.openai import OpenAI
from sglang.backend.runtime_endpoint import RuntimeEndpoint
from sglang.global_config import global_config from sglang.global_config import global_config
from sglang.lang.backend.openai import OpenAI
from sglang.lang.backend.runtime_endpoint import RuntimeEndpoint
from sglang.utils import get_exception_traceback from sglang.utils import get_exception_traceback
......
import unittest import unittest
import sglang as sgl import sglang as sgl
from sglang.backend.runtime_endpoint import RuntimeEndpoint from sglang.lang.backend.runtime_endpoint import RuntimeEndpoint
class TestBind(unittest.TestCase): class TestBind(unittest.TestCase):
......
import unittest import unittest
import sglang as sgl import sglang as sgl
from sglang.backend.base_backend import BaseBackend from sglang.lang.backend.base_backend import BaseBackend
from sglang.lang.chat_template import get_chat_template from sglang.lang.chat_template import get_chat_template
......
...@@ -10,7 +10,6 @@ The image features a man standing on the back of a yellow taxi cab, holding ...@@ -10,7 +10,6 @@ The image features a man standing on the back of a yellow taxi cab, holding
import argparse import argparse
import asyncio import asyncio
import json import json
import time
import aiohttp import aiohttp
import requests import requests
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment