File tree 1 file changed +1
-6
lines changed
tests/integration/fast_api 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 2
2
from fastapi import FastAPI
3
3
from osbot_fast_api .utils .Fast_API_Server import Fast_API_Server
4
4
from osbot_utils .context_managers .print_duration import print_duration
5
- from osbot_utils .testing .Stdout import Stdout
6
- from osbot_utils .utils .Dev import pprint
7
-
8
- from osbot_llms .models .LLMs__Chat_Completion import LLMs__Chat_Completion
5
+ from osbot_llms .models .LLMs__Chat_Completion import LLMs__Chat_Completion
9
6
from osbot_llms .utils .Version import version__osbot_llms
10
7
from tests .llm_fast_api__for_tests import llm_fast_api , llm_fast_api__app
11
8
@@ -44,8 +41,6 @@ def test__chat__completion(self):
44
41
user_prompt = '51-9' )
45
42
llm_chat_completion = LLMs__Chat_Completion (** kwargs )
46
43
response = self .fast_api_server .requests_post ('/chat/completion' , data = llm_chat_completion )
47
- #pprint(dict(response.headers))
48
- #pprint(response.text)
49
44
assert '42' in response .text
50
45
51
46
You can’t perform that action at this time.
0 commit comments