Skip to content

Commit

Permalink
Merge branch 'feature/java-chat-mvp-intelligence-service' into featur…
Browse files Browse the repository at this point in the history
…e/interface-chat-mvp-intelligence-service
  • Loading branch information
milesha committed Nov 27, 2024
2 parents c7ba180 + 13b80c5 commit 7ef9a41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Message {
@Enumerated(EnumType.STRING)
private MessageSender sender;

@Column(length = Length.LONG16)
@Column(length = Length.LONG16)
@NonNull
private String content;

Expand Down
2 changes: 1 addition & 1 deletion server/intelligence-service/app/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ def send_message(thread_id: str, input_message: str, state: State):
)

state["messages"] += output.get("messages", [])
return {"state": state, "response": output}
return {"state": state, "response": output}

0 comments on commit 7ef9a41

Please sign in to comment.