Skip to content

Commit e6a0fda

Browse files
committed
Update to latest SDK
1 parent 2d7378a commit e6a0fda

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/fastapi_app/api_routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def search_handler(query: str, top: int = 5, enable_vector_search: bool =
5252
return [item.to_dict() for item in results]
5353

5454

55-
@router.post("/chat/")
55+
@router.post("/chat")
5656
async def chat_handler(chat_request: ChatRequest):
5757
messages = [message.model_dump() for message in chat_request.messages]
5858
overrides = chat_request.context.get("overrides", {})

src/frontend/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"react": "^18.2.0",
2424
"react-dom": "^18.2.0",
2525
"react-router-dom": "^6.18.0",
26-
"@microsoft/ai-chat-protocol": "1.0.0-beta.20240604.1",
26+
"@microsoft/ai-chat-protocol": "1.0.0-beta.20240610.1",
2727
"react-syntax-highlighter": "^15.5.0",
2828
"scheduler": "^0.20.2"
2929
},

0 commit comments

Comments
 (0)