Skip to content

Commit b202cf8

Browse files
daily work
1 parent 425e498 commit b202cf8

File tree

8 files changed

+523
-6
lines changed

8 files changed

+523
-6
lines changed

api/specs/web-server/_projects_conversations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from typing import Annotated
1313

1414
from fastapi import APIRouter, Depends, status
15-
from models_library.api_schemas_webserver.projects_conversations import (
15+
from models_library.api_schemas_webserver.conversations import (
1616
ConversationMessageRestGet,
1717
ConversationRestGet,
1818
)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from ..projects import ProjectID
1717
from ._base import InputSchema, OutputSchema
1818

19-
### PROJECT CONVERSATION -------------------------------------------------------------------
19+
### CONVERSATION -------------------------------------------------------------------
2020

2121

2222
class ConversationRestGet(OutputSchema):
@@ -47,7 +47,7 @@ class ConversationPatch(InputSchema):
4747
name: str | None = None
4848

4949

50-
### PROJECT CONVERSATION MESSAGES ---------------------------------------------------------------
50+
### CONVERSATION MESSAGES ---------------------------------------------------------------
5151

5252

5353
class ConversationMessageRestGet(OutputSchema):
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mypy: disable-error-code=truthy-function

0 commit comments

Comments
 (0)