"tests/vscode:/vscode.git/clone" did not exist on "96297fb8fdd629fc2fd52872d718d78fa491cba1"
Unverified Commit f226d3da authored by Chang Su's avatar Chang Su Committed by GitHub
Browse files

Fix missing json imports in serving_responses.py (#11681)

parent d2478cd4
...@@ -5,6 +5,7 @@ from __future__ import annotations ...@@ -5,6 +5,7 @@ from __future__ import annotations
import asyncio import asyncio
import copy import copy
import json
import logging import logging
import time import time
from contextlib import AsyncExitStack from contextlib import AsyncExitStack
...@@ -13,7 +14,6 @@ from typing import TYPE_CHECKING, Any, AsyncGenerator, AsyncIterator, Optional, ...@@ -13,7 +14,6 @@ from typing import TYPE_CHECKING, Any, AsyncGenerator, AsyncIterator, Optional,
import jinja2 import jinja2
import openai.types.responses as openai_responses_types import openai.types.responses as openai_responses_types
import orjson
from fastapi import Request from fastapi import Request
from fastapi.responses import ORJSONResponse from fastapi.responses import ORJSONResponse
from openai.types.responses import ( from openai.types.responses import (
......
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