Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion peak_assistant/streamlit/util/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
# SPDX-License-Identifier: MIT

from typing import List, Dict, Any, Optional, Tuple
from autogen_agentchat.messages import TextMessage, UserMessage
from autogen_agentchat.messages import TextMessage
from autogen_core.models import UserMessage
import streamlit as st
import hashlib
import html
Expand Down
4 changes: 2 additions & 2 deletions tests/unit_tests/test_chat_history_conversion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for convert_chat_history_to_user_messages and convert_chat_history_to_text_messages."""
import pytest
from autogen_agentchat.messages import TextMessage, UserMessage
from autogen_agentchat.messages import TextMessage
from autogen_core.models import UserMessage

from peak_assistant.streamlit.util.helpers import (
convert_chat_history_to_user_messages,
Expand Down
Loading