Skip to content

Commit 92bbe64

Browse files
committed
LCORE-995: fixed typos in REST API endpoints handlers
1 parent 5c20949 commit 92bbe64

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/endpoints/conversations_v2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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={

src/app/endpoints/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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__,

0 commit comments

Comments
 (0)