mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-08 22:21:35 +00:00
working import litellm.responses
This commit is contained in:
parent
4b1b87eb67
commit
d6c82327e6
2 changed files with 3 additions and 1 deletions
|
|
@ -1010,6 +1010,7 @@ from .batches.main import *
|
|||
from .batch_completion.main import * # type: ignore
|
||||
from .rerank_api.main import *
|
||||
from .llms.anthropic.experimental_pass_through.messages.handler import *
|
||||
from .responses.main import *
|
||||
from .realtime_api.main import _arealtime
|
||||
from .fine_tuning.main import *
|
||||
from .files.main import *
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ import os
|
|||
import sys
|
||||
|
||||
sys.path.insert(0, os.path.abspath("../.."))
|
||||
import litellm
|
||||
|
||||
|
||||
def test_basic_openai_responses_api():
|
||||
|
|
@ -9,4 +10,4 @@ def test_basic_openai_responses_api():
|
|||
model="gpt-4o", input="Tell me a three sentence bedtime story about a unicorn."
|
||||
)
|
||||
|
||||
validate_responses_api_response()
|
||||
# validate_responses_api_response()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue