File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ async def get_conversations_list_endpoint_handler(
130130 skip_userid_check = auth [2 ]
131131
132132 if configuration .conversation_cache is None :
133- logger .warning ("Converastion cache is not configured" )
133+ logger .warning ("Conversation cache is not configured" )
134134 raise HTTPException (
135135 status_code = status .HTTP_404_NOT_FOUND ,
136136 detail = {
@@ -162,7 +162,7 @@ async def get_conversation_endpoint_handler(
162162 skip_userid_check = auth [2 ]
163163
164164 if configuration .conversation_cache is None :
165- logger .warning ("Converastion cache is not configured" )
165+ logger .warning ("Conversation cache is not configured" )
166166 raise HTTPException (
167167 status_code = status .HTTP_404_NOT_FOUND ,
168168 detail = {
@@ -202,7 +202,7 @@ async def delete_conversation_endpoint_handler(
202202 skip_userid_check = auth [2 ]
203203
204204 if configuration .conversation_cache is None :
205- logger .warning ("Converastion cache is not configured" )
205+ logger .warning ("Conversation cache is not configured" )
206206 raise HTTPException (
207207 status_code = status .HTTP_404_NOT_FOUND ,
208208 detail = {
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ async def info_endpoint_handler(
6565 llama_stack_version = llama_stack_version_object .version
6666 logger .debug ("Service name: %s" , configuration .configuration .name )
6767 logger .debug ("Service version: %s" , __version__ )
68- logger .debug ("LLama Stack version: %s" , llama_stack_version )
68+ logger .debug ("Llama Stack version: %s" , llama_stack_version )
6969 return InfoResponse (
7070 name = configuration .configuration .name ,
7171 service_version = __version__ ,
You can’t perform that action at this time.
0 commit comments