diff --git a/src/backend/base/langflow/base/io/chat.py b/src/backend/base/langflow/base/io/chat.py index fd16c1988..b722c16ab 100644 --- a/src/backend/base/langflow/base/io/chat.py +++ b/src/backend/base/langflow/base/io/chat.py @@ -23,7 +23,7 @@ class ChatComponent(CustomComponent): "display_name": "Sender Type", "advanced": True, }, - "sender_name": {"display_name": "Sender Name"}, + "sender_name": {"display_name": "Sender Name", "advanced": True}, "session_id": { "display_name": "Session ID", "info": "If provided, the message will be stored in the memory.", @@ -79,6 +79,6 @@ class ChatComponent(CustomComponent): text=input_value, sender=sender, sender_name=sender_name, files=files, session_id=session_id ) self.status = message - if session_id and isinstance(message, Message): + if session_id and isinstance(message, Message) and isinstance(message.text, str): self.store_message(message) return message diff --git a/src/backend/base/langflow/components/data/URL.py b/src/backend/base/langflow/components/data/URL.py index f9e515205..32ebc91ee 100644 --- a/src/backend/base/langflow/components/data/URL.py +++ b/src/backend/base/langflow/components/data/URL.py @@ -20,7 +20,7 @@ class URLComponent(CustomComponent): self, urls: list[str], ) -> list[Record]: - loader = WebBaseLoader(web_paths=urls) + loader = WebBaseLoader(web_paths=[url for url in urls if url]) docs = loader.load() records = self.to_records(docs) self.status = records diff --git a/src/backend/base/langflow/components/experimental/Embed.py b/src/backend/base/langflow/components/experimental/Embed.py new file mode 100644 index 000000000..88de23486 --- /dev/null +++ b/src/backend/base/langflow/components/experimental/Embed.py @@ -0,0 +1,15 @@ +from langflow.custom import CustomComponent +from langflow.schema import Record +from langflow.field_typing import Embeddings + + +class EmbedComponent(CustomComponent): + display_name = "Embed Texts" + + def build_config(self): + return {"texts": {"display_name": "Texts"}, "embbedings": {"display_name": "Embeddings"}} + + def build(self, texts: list[str], embbedings: Embeddings) -> Embeddings: + vectors = Record(vector=embbedings.embed_documents(texts)) + self.status = vectors + return vectors diff --git a/src/backend/base/langflow/components/experimental/Message.py b/src/backend/base/langflow/components/experimental/Message.py new file mode 100644 index 000000000..9fdd8a0da --- /dev/null +++ b/src/backend/base/langflow/components/experimental/Message.py @@ -0,0 +1,38 @@ +from typing import Optional + +from langflow.custom import CustomComponent +from langflow.schema.message import Message + + +class MessageComponent(CustomComponent): + display_name = "Message" + description = "Creates a Message object given a Session ID." + + def build_config(self): + return { + "sender": { + "options": ["Machine", "User"], + "display_name": "Sender Type", + }, + "sender_name": {"display_name": "Sender Name"}, + "text": {"display_name": "Text"}, + "session_id": { + "display_name": "Session ID", + "info": "Session ID of the chat history.", + "input_types": ["Text"], + }, + } + + def build( + self, + sender: str = "User", + sender_name: Optional[str] = None, + session_id: Optional[str] = None, + text: str = "", + ) -> Message: + message = Message( + text=text, sender=sender, sender_name=sender_name, flow_id=self.graph.flow_id, session_id=session_id + ) + + self.status = message + return message diff --git a/src/backend/base/langflow/components/experimental/StoreMessage.py b/src/backend/base/langflow/components/experimental/StoreMessage.py index 19be36068..5d0abfbb9 100644 --- a/src/backend/base/langflow/components/experimental/StoreMessage.py +++ b/src/backend/base/langflow/components/experimental/StoreMessage.py @@ -1,5 +1,3 @@ -from typing import List, Optional - from langflow.custom import CustomComponent from langflow.memory import get_messages, store_message from langflow.schema.message import Message @@ -7,36 +5,18 @@ from langflow.schema.message import Message class StoreMessageComponent(CustomComponent): display_name = "Store Message" - description = "Stores a chat message given a Session ID." - beta: bool = True + description = "Stores a chat message." def build_config(self): return { - "sender": { - "options": ["Machine", "User"], - "display_name": "Sender Type", - }, - "sender_name": {"display_name": "Sender Name"}, "message": {"display_name": "Message"}, - "session_id": { - "display_name": "Session ID", - "info": "Session ID of the chat history.", - "input_types": ["Text"], - }, } def build( self, - sender: str = "User", - sender_name: Optional[str] = None, - session_id: Optional[str] = None, - message: str = "", - ) -> List[Message]: - store_message( - message=Message( - text=message, sender=sender, sender_name=sender_name, flow_id=self.graph.flow_id, session_id=session_id - ) - ) + message: Message, + ) -> Message: + store_message(message, flow_id=self.graph.flow_id) + self.status = get_messages() - self.status = get_messages(session_id=session_id) - return get_messages(session_id=session_id) + return message diff --git a/src/backend/base/langflow/components/helpers/MessageHistory.py b/src/backend/base/langflow/components/helpers/MessageHistory.py index 221d90c4e..90191e7d0 100644 --- a/src/backend/base/langflow/components/helpers/MessageHistory.py +++ b/src/backend/base/langflow/components/helpers/MessageHistory.py @@ -6,25 +6,27 @@ from langflow.schema import Record class MessageHistoryComponent(CustomComponent): - display_name = "Message History" - description = "Retrieves stored chat messages given a specific Session ID." - beta: bool = True + display_name = "Memory" + description = "Retrieves stored chat messages." def build_config(self): return { "sender": { "options": ["Machine", "User", "Machine and User"], "display_name": "Sender Type", + "advanced": True, }, "sender_name": {"display_name": "Sender Name", "advanced": True}, "n_messages": { "display_name": "Number of Messages", "info": "Number of messages to retrieve.", + "advanced": True, }, "session_id": { "display_name": "Session ID", "info": "Session ID of the chat history.", "input_types": ["Text"], + "advanced": True, }, "order": { "options": ["Ascending", "Descending"], @@ -39,7 +41,7 @@ class MessageHistoryComponent(CustomComponent): sender: Optional[str] = "Machine and User", sender_name: Optional[str] = None, session_id: Optional[str] = None, - n_messages: int = 5, + n_messages: int = 100, order: Optional[str] = "Descending", ) -> List[Record]: order = "DESC" if order == "Descending" else "ASC" diff --git a/src/backend/base/langflow/components/helpers/RecordsToText.py b/src/backend/base/langflow/components/helpers/RecordsToText.py index d3e418792..049c99243 100644 --- a/src/backend/base/langflow/components/helpers/RecordsToText.py +++ b/src/backend/base/langflow/components/helpers/RecordsToText.py @@ -17,6 +17,7 @@ class RecordsToTextComponent(CustomComponent): "template": { "display_name": "Template", "info": "The template to use for formatting the records. It can contain the keys {text}, {data} or any other key in the Record.", + "multiline": True, }, } diff --git a/src/backend/base/langflow/components/prompts/Prompt.py b/src/backend/base/langflow/components/prompts/Prompt.py new file mode 100644 index 000000000..ca421b395 --- /dev/null +++ b/src/backend/base/langflow/components/prompts/Prompt.py @@ -0,0 +1,24 @@ +from langflow.custom import CustomComponent +from langflow.field_typing import TemplateField +from langflow.field_typing.prompt import Prompt + + +class PromptComponent(CustomComponent): + display_name: str = "Empty Prompt" + description: str = "Create a prompt template with dynamic variables." + icon = "prompts" + + def build_config(self): + return { + "template": TemplateField(display_name="Template"), + "code": TemplateField(advanced=True), + } + + async def build( + self, + template: Prompt, + **kwargs, + ) -> Prompt: + prompt = await Prompt.from_template_and_variables(template, kwargs) + self.status = prompt.format_text() + return prompt diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.png deleted file mode 100644 index fa4fed5d1..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.svg new file mode 100644 index 000000000..62f3c1d27 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-01.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.png deleted file mode 100644 index 6519e7657..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.svg new file mode 100644 index 000000000..6a1e32abc --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-02.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.png deleted file mode 100644 index 512a5b037..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.svg new file mode 100644 index 000000000..df4676205 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-03.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.png deleted file mode 100644 index 6c84a0792..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.svg new file mode 100644 index 000000000..bd4dcdc54 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-04.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.png deleted file mode 100644 index 8e4b22298..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.svg new file mode 100644 index 000000000..22fdcd454 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-05.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.png deleted file mode 100644 index d317eb499..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.svg new file mode 100644 index 000000000..9d45fb848 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-06.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.png deleted file mode 100644 index ed2ed8214..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.svg new file mode 100644 index 000000000..d9800b2c5 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-07.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.png deleted file mode 100644 index 0785f59ea..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.svg new file mode 100644 index 000000000..58e755d1b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-08.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.png deleted file mode 100644 index 8dd5b1677..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.svg new file mode 100644 index 000000000..a498bfb52 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-09.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.png deleted file mode 100644 index 058dff1a8..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.svg new file mode 100644 index 000000000..93ced759e --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-10.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.png deleted file mode 100644 index a517fad0d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.svg new file mode 100644 index 000000000..578c2444b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-11.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.png deleted file mode 100644 index 508590f18..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.svg new file mode 100644 index 000000000..373031e99 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-12.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.png deleted file mode 100644 index 90865a49d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.svg new file mode 100644 index 000000000..0a0523ddc --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-13.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.png deleted file mode 100644 index 269621bb2..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.svg new file mode 100644 index 000000000..5c0672f70 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-14.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.png deleted file mode 100644 index da85a4e30..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.svg new file mode 100644 index 000000000..7c6159c5b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-15.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.png deleted file mode 100644 index cf30ae136..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.svg new file mode 100644 index 000000000..96389676f --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-16.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.png deleted file mode 100644 index d53cd7997..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.svg new file mode 100644 index 000000000..dc8aa54d5 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-17.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.png deleted file mode 100644 index e0ac43aab..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.svg new file mode 100644 index 000000000..33daef83b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-18.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.png deleted file mode 100644 index d04a96a27..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.svg new file mode 100644 index 000000000..f3a36ec3a --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-19.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.png deleted file mode 100644 index e2d6e99bc..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.svg new file mode 100644 index 000000000..a53a56aa2 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-20.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.png deleted file mode 100644 index 392b004e2..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.svg new file mode 100644 index 000000000..2cb2fcb8b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-21.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.png deleted file mode 100644 index 606aed15d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.svg new file mode 100644 index 000000000..9c2923e21 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-22.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.png deleted file mode 100644 index c16d96d41..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.svg new file mode 100644 index 000000000..111f30e4a --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-23.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.png deleted file mode 100644 index e0dd6a1b2..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.svg new file mode 100644 index 000000000..fd3b0edea --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-24.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.png deleted file mode 100644 index 08aeb61c3..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.svg new file mode 100644 index 000000000..f5df7a6b9 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-25.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.png deleted file mode 100644 index 312ef035c..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.svg new file mode 100644 index 000000000..5d2d1d26b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-26.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.png deleted file mode 100644 index 95972203e..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.svg new file mode 100644 index 000000000..805d92ad4 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-01-27.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.png deleted file mode 100644 index b55f875ac..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.svg new file mode 100644 index 000000000..6c5267009 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-01.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.png deleted file mode 100644 index b51a3b136..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.svg new file mode 100644 index 000000000..812919cbb --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-02.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.png deleted file mode 100644 index 8b386a081..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.svg new file mode 100644 index 000000000..c228becdd --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-03.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.png deleted file mode 100644 index e36804f81..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.svg new file mode 100644 index 000000000..24467602b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-04.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.png deleted file mode 100644 index 7e4661821..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.svg new file mode 100644 index 000000000..ffe3ec4f4 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-05.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.png deleted file mode 100644 index 5ce14b221..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.svg new file mode 100644 index 000000000..48ab569d0 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-06.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.png deleted file mode 100644 index c91f89584..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.svg new file mode 100644 index 000000000..4aa9f92a8 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-07.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.png deleted file mode 100644 index 4f4c4ab2e..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.svg new file mode 100644 index 000000000..4cb7cba08 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-08.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.png deleted file mode 100644 index 9c1b5b34d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.svg new file mode 100644 index 000000000..927475066 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-09.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.png deleted file mode 100644 index 6746a9cc1..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.svg new file mode 100644 index 000000000..5edf770b1 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-10.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.png deleted file mode 100644 index 771ed1869..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.svg new file mode 100644 index 000000000..29733814e --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-11.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.png deleted file mode 100644 index f32aa58ee..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.svg new file mode 100644 index 000000000..07ee18224 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-12.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.png deleted file mode 100644 index ae8db49a6..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.svg new file mode 100644 index 000000000..9ab2fd502 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-13.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.png deleted file mode 100644 index 038272194..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.svg new file mode 100644 index 000000000..99453cead --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-14.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.png deleted file mode 100644 index 073b456a0..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.svg new file mode 100644 index 000000000..7e65d9d2a --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-15.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.png deleted file mode 100644 index 5369cf9af..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.svg new file mode 100644 index 000000000..add07c2fa --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-16.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.png deleted file mode 100644 index 1f143bc30..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.svg new file mode 100644 index 000000000..d069c007f --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-17.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.png deleted file mode 100644 index 3456bf542..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.svg new file mode 100644 index 000000000..8ca1898df --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-18.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.png deleted file mode 100644 index a8f673724..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.svg new file mode 100644 index 000000000..1da4dd57e --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-19.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.png deleted file mode 100644 index 5384bf7a1..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.svg new file mode 100644 index 000000000..f3cadd3f0 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-20.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.png deleted file mode 100644 index 1c6a39bbf..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.svg new file mode 100644 index 000000000..72d24edf4 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-21.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.png deleted file mode 100644 index 976f94dc1..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.svg new file mode 100644 index 000000000..31976afbc --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-22.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.png deleted file mode 100644 index c6ca79192..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.svg new file mode 100644 index 000000000..8ca26c7ad --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-23.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.png deleted file mode 100644 index 429f74046..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.svg new file mode 100644 index 000000000..70c5f9af7 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-24.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.png deleted file mode 100644 index 38aeea19c..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.svg new file mode 100644 index 000000000..0b06acf10 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-25.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.png deleted file mode 100644 index 65342b59d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.svg new file mode 100644 index 000000000..efe31a6ae --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-26.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.png b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.png deleted file mode 100644 index 1c2fc7717..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.svg b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.svg new file mode 100644 index 000000000..6be7092b0 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/People/People Avatar-02-27.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.png deleted file mode 100644 index 218c03407..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.svg new file mode 100644 index 000000000..a897a78b0 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/026-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.png deleted file mode 100644 index f72f22226..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.svg new file mode 100644 index 000000000..2b3d75526 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/027-satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.png deleted file mode 100644 index 2e558a69d..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.svg new file mode 100644 index 000000000..d9de6b169 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/028-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.png deleted file mode 100644 index 6c3622fea..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.svg new file mode 100644 index 000000000..9fdb0bcd5 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/029-telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.png deleted file mode 100644 index f1b5cf777..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.svg new file mode 100644 index 000000000..4cb73ec51 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/030-books.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.png deleted file mode 100644 index 289a237c9..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.svg new file mode 100644 index 000000000..243c6a47d --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/031-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.png deleted file mode 100644 index ca09192a6..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.svg new file mode 100644 index 000000000..57b370a73 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/032-constellation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.png deleted file mode 100644 index de3bf7548..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.svg new file mode 100644 index 000000000..9b9b8c929 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/033-planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.png deleted file mode 100644 index 0ed7f3a46..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.svg new file mode 100644 index 000000000..c1f232eab --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/034-alien.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.png deleted file mode 100644 index b58ec3148..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.svg new file mode 100644 index 000000000..de37ab082 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/035-globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.png deleted file mode 100644 index 4cb944fd2..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.svg new file mode 100644 index 000000000..b3a217c91 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/036-eclipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.png deleted file mode 100644 index f1e11b5ed..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.svg new file mode 100644 index 000000000..57bb86169 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/037-meteor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.png deleted file mode 100644 index 63c8893ed..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.svg new file mode 100644 index 000000000..400ecd776 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/038-eclipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.png deleted file mode 100644 index 8b858f28e..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.svg new file mode 100644 index 000000000..fd894241b --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/039-Asteroid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.png deleted file mode 100644 index 0befc44f1..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.svg new file mode 100644 index 000000000..003e0ef03 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/040-mission.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.png deleted file mode 100644 index d499c98b6..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.svg new file mode 100644 index 000000000..d1164b166 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/041-spaceship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.png deleted file mode 100644 index f13df646b..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.svg new file mode 100644 index 000000000..03a589409 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/042-space shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.png deleted file mode 100644 index 136dc8031..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.svg new file mode 100644 index 000000000..841d226f3 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/043-space shuttle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.png deleted file mode 100644 index 16d60e221..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.svg new file mode 100644 index 000000000..7a069e53e --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/044-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.png deleted file mode 100644 index fdb107548..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.svg new file mode 100644 index 000000000..c69214ebd --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/045-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.png deleted file mode 100644 index e2808eb39..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.svg new file mode 100644 index 000000000..65e523f31 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/046-rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.png deleted file mode 100644 index cc3bbf904..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.svg new file mode 100644 index 000000000..912c33f73 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/047-computer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.png deleted file mode 100644 index 0548cb820..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.svg new file mode 100644 index 000000000..1f0bfb9c1 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/048-satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.png deleted file mode 100644 index 99654c52e..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.svg new file mode 100644 index 000000000..c9c582d8e --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/049-astronaut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.png b/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.png deleted file mode 100644 index 52c23b249..000000000 Binary files a/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.png and /dev/null differ diff --git a/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.svg b/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.svg new file mode 100644 index 000000000..13d034c47 --- /dev/null +++ b/src/backend/base/langflow/initial_setup/profile_pictures/Space/050-space robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/backend/base/langflow/initial_setup/starter_projects/Langflow Blog Writter.json b/src/backend/base/langflow/initial_setup/starter_projects/Langflow Blog Writter.json index 037c3836c..e98859446 100644 --- a/src/backend/base/langflow/initial_setup/starter_projects/Langflow Blog Writter.json +++ b/src/backend/base/langflow/initial_setup/starter_projects/Langflow Blog Writter.json @@ -322,7 +322,7 @@ "show": true, "title_case": false, "type": "code", - "value": "from typing import Any, Dict\n\nfrom langchain_community.document_loaders.web_base import WebBaseLoader\n\nfrom langflow.custom import CustomComponent\nfrom langflow.schema import Record\n\n\nclass URLComponent(CustomComponent):\n display_name = \"URL\"\n description = \"Fetch content from one or more URLs.\"\n icon = \"layout-template\"\n\n def build_config(self) -> Dict[str, Any]:\n return {\n \"urls\": {\"display_name\": \"URL\"},\n }\n\n def build(\n self,\n urls: list[str],\n ) -> list[Record]:\n loader = WebBaseLoader(web_paths=urls)\n docs = loader.load()\n records = self.to_records(docs)\n self.status = records\n return records\n" + "value": "from typing import Any, Dict\n\nfrom langchain_community.document_loaders.web_base import WebBaseLoader\n\nfrom langflow.custom import CustomComponent\nfrom langflow.schema import Record\n\n\nclass URLComponent(CustomComponent):\n display_name = \"URL\"\n description = \"Fetch content from one or more URLs.\"\n icon = \"layout-template\"\n\n def build_config(self) -> Dict[str, Any]:\n return {\n \"urls\": {\"display_name\": \"URL\"},\n }\n\n def build(\n self,\n urls: list[str],\n ) -> list[Record]:\n loader = WebBaseLoader(web_paths=[url for url in urls if url])\n docs = loader.load()\n records = self.to_records(docs)\n self.status = records\n return records\n" }, "urls": { "advanced": false, @@ -795,7 +795,7 @@ "show": true, "title_case": false, "type": "code", - "value": "from typing import Any, Dict\n\nfrom langchain_community.document_loaders.web_base import WebBaseLoader\n\nfrom langflow.custom import CustomComponent\nfrom langflow.schema import Record\n\n\nclass URLComponent(CustomComponent):\n display_name = \"URL\"\n description = \"Fetch content from one or more URLs.\"\n icon = \"layout-template\"\n\n def build_config(self) -> Dict[str, Any]:\n return {\n \"urls\": {\"display_name\": \"URL\"},\n }\n\n def build(\n self,\n urls: list[str],\n ) -> list[Record]:\n loader = WebBaseLoader(web_paths=urls)\n docs = loader.load()\n records = self.to_records(docs)\n self.status = records\n return records\n" + "value": "from typing import Any, Dict\n\nfrom langchain_community.document_loaders.web_base import WebBaseLoader\n\nfrom langflow.custom import CustomComponent\nfrom langflow.schema import Record\n\n\nclass URLComponent(CustomComponent):\n display_name = \"URL\"\n description = \"Fetch content from one or more URLs.\"\n icon = \"layout-template\"\n\n def build_config(self) -> Dict[str, Any]:\n return {\n \"urls\": {\"display_name\": \"URL\"},\n }\n\n def build(\n self,\n urls: list[str],\n ) -> list[Record]:\n loader = WebBaseLoader(web_paths=[url for url in urls if url])\n docs = loader.load()\n records = self.to_records(docs)\n self.status = records\n return records\n" }, "urls": { "advanced": false, diff --git a/src/backend/base/langflow/memory.py b/src/backend/base/langflow/memory.py index 9a07f4bc1..e812f449c 100644 --- a/src/backend/base/langflow/memory.py +++ b/src/backend/base/langflow/memory.py @@ -46,7 +46,13 @@ def get_messages( # so we need to reverse the order messages_df = messages_df[::-1] if order == "DESC" else messages_df for row in messages_df.itertuples(): - msg = Message(text=row.text, sender=row.sender, sender_name=row.sender_name, timestamp=row.timestamp) + msg = Message( + text=row.text, + sender=row.sender, + session_id=row.session_id, + sender_name=row.sender_name, + timestamp=row.timestamp, + ) messages.append(msg) diff --git a/src/frontend/package.json b/src/frontend/package.json index c6cff25da..bb7efd38d 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -6,7 +6,6 @@ "@headlessui/react": "^1.7.17", "@hookform/resolvers": "^3.3.4", "@million/lint": "^0.0.73", - "react-hotkeys-hook": "^4.5.0", "@radix-ui/react-accordion": "^1.1.2", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-dialog": "^1.0.4", @@ -56,6 +55,7 @@ "react-dom": "^18.2.21", "react-error-boundary": "^4.0.11", "react-hook-form": "^7.51.4", + "react-hotkeys-hook": "^4.5.0", "react-icons": "^5.0.1", "react-laag": "^2.0.5", "react-markdown": "^8.0.7", diff --git a/src/frontend/src/App.css b/src/frontend/src/App.css index 53fe3fdc4..125282e2c 100644 --- a/src/frontend/src/App.css +++ b/src/frontend/src/App.css @@ -90,31 +90,31 @@ body { } ::-webkit-scrollbar-track { - background-color: #f1f1f1 !important; + background-color: hsl(var(--muted)) !important; border-radius: 10px; } ::-webkit-scrollbar-thumb { - background-color: #ccc !important; + background-color: hsl(var(--border)) !important; border-radius: 999px !important; } ::-webkit-scrollbar-thumb:hover { - background-color: #bbb !important; + background-color: hsl(var(--ring)) !important; } .jv-indent::-webkit-scrollbar-track { - background-color: #f1f1f1 !important; + background-color: hsl(var(--muted)) !important; border-radius: 10px; } .jv-indent::-webkit-scrollbar-thumb { - background-color: #ccc !important; + background-color: hsl(var(--border)) !important; border-radius: 999px !important; } .jv-indent::-webkit-scrollbar-thumb:hover { - background-color: #bbb !important; + background-color: hsl(var(--ring)) !important; } .custom-hover { @@ -138,33 +138,6 @@ body { background-color: #bbb !important; } -.ag-body-horizontal-scroll-viewport, -.ag-body-vertical-scroll-viewport { - cursor: auto; -} - -.ag-body-horizontal-scroll-viewport::-webkit-scrollbar, -.ag-body-vertical-scroll-viewport::-webkit-scrollbar { - width: 8px; - height: 8px; -} - -.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-track, -.ag-body-vertical-scroll-viewport::-webkit-scrollbar-track { - background-color: #f1f1f1; -} - -.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb, -.ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb { - background-color: #ccc; - border-radius: 999px; -} - -.ag-body-horizontal-scroll-viewport::-webkit-scrollbar-thumb:hover, -.ag-body-vertical-scroll-viewport::-webkit-scrollbar-thumb:hover { - background-color: #bbb; -} - /* This CSS is to not apply the border for the column having 'no-border' class */ .no-border.ag-cell:focus { border: none !important; diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index 36f2ad9f9..4a60f453f 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -29,10 +29,10 @@ export default function App() { useTrackLastVisitedPath(); const removeFromTempNotificationList = useAlertStore( - (state) => state.removeFromTempNotificationList + (state) => state.removeFromTempNotificationList, ); const tempNotificationList = useAlertStore( - (state) => state.tempNotificationList + (state) => state.tempNotificationList, ); const [fetchError, setFetchError] = useState(false); const isLoading = useFlowsManagerStore((state) => state.isLoading); @@ -50,7 +50,7 @@ export default function App() { const refreshVersion = useDarkStore((state) => state.refreshVersion); const refreshStars = useDarkStore((state) => state.refreshStars); const setGlobalVariables = useGlobalVariablesStore( - (state) => state.setGlobalVariables + (state) => state.setGlobalVariables, ); const checkHasStore = useStoreStore((state) => state.checkHasStore); const navigate = useNavigate(); diff --git a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx index 90520f939..864a29a2a 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/parameterComponent/index.tsx @@ -48,9 +48,9 @@ import useFetchDataOnMount from "../../../hooks/use-fetch-data-on-mount"; import useHandleOnNewValue from "../../../hooks/use-handle-new-value"; import useHandleNodeClass from "../../../hooks/use-handle-node-class"; import useHandleRefreshButtonPress from "../../../hooks/use-handle-refresh-buttons"; -import OutputModal from "../outputModal"; import TooltipRenderComponent from "../tooltipRenderComponent"; import { TEXT_FIELD_TYPES } from "./constants"; +import OutputModal from "../outputModal"; import { useShortcutsStore } from "../../../../stores/shortcuts"; import { useHotkeys } from "react-hotkeys-hook"; @@ -89,7 +89,9 @@ export default function ParameterComponent({ const [openOutputModal, setOpenOutputModal] = useState(false); const flowPool = useFlowStore((state) => state.flowPool); - const displayOutputPreview = !!flowPool[data.id]; + const displayOutputPreview = + !!flowPool[data.id] && + flowPool[data.id][flowPool[data.id].length - 1]?.valid; const unknownOutput = !!( flowPool[data.id] && diff --git a/src/frontend/src/CustomNodes/GenericNode/components/tooltipRenderComponent/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/tooltipRenderComponent/index.tsx index c76bc7293..ed2760161 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/tooltipRenderComponent/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/tooltipRenderComponent/index.tsx @@ -24,7 +24,7 @@ const TooltipRenderComponent = ({ item, index, left }) => { 0 ? "mt-2 flex items-center" : "mt-3 flex items-center" + index > 0 ? "mt-2 flex items-center" : "mt-3 flex items-center", )} >
{ - return ( -
- {iconStatus} -
- ); + return iconStatus; }; const getNodeBorderClassName = ( @@ -142,7 +139,9 @@ export default function GenericNode({ // const [openWDoubleCLick, setOpenWDoubleCLick] = useState(false); const getBaseBorderClass = (selected) => { - let className = selected ? "border border-ring" : "border"; + let className = selected + ? "border border-ring hover:shadow-node" + : "border hover:shadow-node"; let frozenClass = selected ? "border-ring-frozen" : "border-frozen"; return data.node?.frozen ? frozenClass : className; }; @@ -279,6 +278,7 @@ export default function GenericNode({ openAdvancedModal={false} onCloseAdvancedModal={() => {}} selected={selected} + updateNode={handleUpdateCode} /> ); @@ -366,10 +366,10 @@ export default function GenericNode({ />
) : ( -
+
{ + onDoubleClick={(event) => { if (nameEditable) { setInputName(true); } @@ -383,6 +383,22 @@ export default function GenericNode({ {data.node?.display_name}
+ {isOutdated && ( + + + + )}
)}
@@ -501,22 +517,31 @@ export default function GenericNode({ {showNode && ( <> -
- {isOutdated && ( - - - - )} +
+ - + {renderIconStatus()}
@@ -581,9 +589,11 @@ export default function GenericNode({ : "" } > + {/* increase height!! */}
{showNode && nameEditable && inputDescription ? (