Commit graph

7,638 commits

Author SHA1 Message Date
Lucas Oliveira
07e6b137c4 Fixed display prompt showing when there is no template 2023-07-10 19:45:12 -03:00
gustavoschaedler
719015b5bb 🐛 fix(custom.py): import re module to fix NameError when using re.split
🐛 fix(custom.py): fix indentation of class_template dictionary to improve readability
🐛 fix(custom.py): fix indentation of class dictionary to improve readability
🐛 fix(custom.py): fix indentation of _handle_function method to improve readability
🐛 fix(custom.py): fix indentation of transform_list method to improve readability
🐛 fix(custom.py): fix indentation of extract_class_info method to improve readability
🐛 fix(custom.py): fix indentation of _class_template_validation method to improve readability
🐛 fix(custom.py): fix indentation of build_langchain_template_custom_component method to improve readability
🐛 fix(custom.py): fix indentation of add_new_custom_field method to improve readability
🐛 fix(custom.py): fix indentation of add_code_field method to improve readability
🐛 fix(custom.py): fix indentation of extract_type_from_optional method to improve readability
🐛 fix(custom.py): fix indentation of build_langchain_template_custom_component method to improve readability
🔥 chore(custom.py): remove unused imports and variables
 feat(custom.py): add support for splitting a string by ':' or '=' and padding with None until length is 3 in _split_string method
 feat(custom.py): add support for transforming a list of strings by splitting each string and padding with None in transform_list method
 feat(custom.py): add support for extracting the type from a string formatted as "Optional[<type>]" in extract_type_from_optional method
 feat(custom.py): add support for passing field_value and field_required parameters to add_new_custom_field method
 feat(custom.py): add support for passing field_value and field_required parameters to build_langchain_template_custom_component method
 feat(custom.py): add support for passing field_value and field_required parameters to add_new_custom_field method
 feat(custom.py): add support for passing field_value and field_required parameters to build_langchain_template_custom_component method
 feat(custom.py): add support for passing field_value and field_required parameters to add_new_custom_field method
 feat(custom.py): add support for passing field_value and field_required parameters to build_langchain_template_custom_component method
 feat(custom.py): add support for passing field_value and field_required parameters to add_new_custom_field method
 feat(custom.py): add support for
2023-07-10 23:38:01 +01:00
Igor Carvalho
e438f5a2a6 refactor(parameterComponent): Make modal disabled inputs look like other disabled inputs 2023-07-10 19:35:54 -03:00
anovazzi1
6b17215a7b removing edges after remove handle on prompt 2023-07-10 19:34:19 -03:00
Lucas Oliveira
46e59a31d8 Merge branch 'form_io' of github.com:logspace-ai/langflow into form_io 2023-07-10 19:26:15 -03:00
Lucas Oliveira
20644a83bc Added placeholder message when a chat key does not exist 2023-07-10 19:24:02 -03:00
anovazzi1
b6aa4d9449 Merge branch 'form_io' of personal:logspace-ai/langflow into form_io 2023-07-10 18:46:52 -03:00
anovazzi1
af41be13a6 update template bug 2023-07-10 18:46:22 -03:00
Gabriel Luiz Freitas Almeida
7b2db83033 🐛 fix(tools.py): add "BaseTool" as a base class for PythonFunctionToolNode to fix inheritance issue 2023-07-10 18:43:08 -03:00
Igor Carvalho
9df88167c2 style(index.css): Change tailwind default colors to langflow colors and add user and bot color icons 2023-07-10 18:42:32 -03:00
anovazzi1
be62e15969 Merge branch 'form_io' of personal:logspace-ai/langflow into form_io 2023-07-10 18:10:43 -03:00
anovazzi1
86bdec36e6 new function to clean invalid edges of a flow 2023-07-10 18:10:11 -03:00
Gabriel Luiz Freitas Almeida
cd9fc3a2e4 🐛 fix(loading.py): fix conditional statement for instantiating prompt objects based on node_type
 feat(loading.py): improve formatting of input variables for prompt objects
2023-07-10 17:50:33 -03:00
Gabriel Luiz Freitas Almeida
00c1734fb8 🐛 fix(chat.py): fix the issue where the params variable is not converted to a string before slicing it in the log message to avoid TypeError 2023-07-10 17:50:32 -03:00
Gabriel Luiz Freitas Almeida
2cb8452968 🐛 fix(types.py): refactor _built_object_repr method in PromptVertex to improve readability and handle edge cases 2023-07-10 17:50:31 -03:00
Igor Carvalho
965d6cf5bc style(index.css): Remove unnecessary dark classes 2023-07-10 17:50:17 -03:00
Lucas Oliveira
ba61b0e9e0 Merge branch 'form_io' of github.com:logspace-ai/langflow into form_io 2023-07-10 16:44:52 -03:00
Lucas Oliveira
7bfe0c88c1 Fixed and added conditions to flows without chat 2023-07-10 16:42:41 -03:00
Cristhian Zanforlin Lousa
7cded3898e Merge branch 'form_io' of https://github.com/logspace-ai/langflow into form_io 2023-07-10 16:41:29 -03:00
Cristhian Zanforlin Lousa
5d42acf28d 🐛 fix(utils.ts): add optional chaining to reactFlowInstance.getNode() to handle cases where reactFlowInstance is null or undefined 2023-07-10 16:41:23 -03:00
Gabriel Luiz Freitas Almeida
43e69f1f45 🐛 fix(types.py): fix variable name in format method to correctly reference the 'artifacts' variable 2023-07-10 16:29:39 -03:00
Lucas Oliveira
e020e23124 Fixed tooltip not being at the top of all nodes 2023-07-10 16:20:18 -03:00
Lucas Oliveira
6b3fcd5608 format 2023-07-10 16:00:12 -03:00
Lucas Oliveira
f035be88e4 Fixed bug where we cannot create new flow when we build a flow 2023-07-10 15:59:38 -03:00
Gabriel Luiz Freitas Almeida
eecefdb235 🐛 fix(formModal): handle case when chatKey is undefined to prevent error 2023-07-10 15:47:02 -03:00
gustavoschaedler
6122521783 🐛 fix(custom.py): remove unused imports and unused code block to improve code cleanliness and performance
 feat(custom.py): add NotImplementedError to the build method to indicate that it needs to be implemented in subclasses
🚧 chore(test_custom_component.py): add test cases for various methods in the CustomComponent class to improve test coverage and ensure code correctness
2023-07-10 19:34:36 +01:00
Cristhian Zanforlin Lousa
8b77cf5504 Merge branch 'form_io' of https://github.com/logspace-ai/langflow into form_io 2023-07-10 15:17:21 -03:00
Cristhian Zanforlin Lousa
43063dd00f 🎨 style(chatMessage/index.tsx): add responsive max-width to the markdown container to improve readability on smaller screens 2023-07-10 15:17:13 -03:00
Gabriel Luiz Freitas Almeida
2c2ae5451c 🔒 chore(base.py): add validation for invalid input variable names in validate_prompt function
🐛 fix(base.py): raise ValueError if any of the input variables in template are named as invalid names to prevent potential issues
2023-07-10 15:13:40 -03:00
Gabriel Luiz Freitas Almeida
6ff7ac08ce
🐛 fix(utils.ts): fix typo in utils.ts (#599) 2023-07-10 14:50:42 -03:00
Cristhian Zanforlin Lousa
df31285395 Merge branch 'form_io' of https://github.com/logspace-ai/langflow into form_io 2023-07-10 14:39:18 -03:00
Cristhian Zanforlin Lousa
1f2cddf1d2 🎨 style(chatInput/index.tsx): add 'bg-input' class to the chat input when lockChat is true to improve visual distinction 2023-07-10 14:39:11 -03:00
Ikko Eltociear Ashimine
7cbba9eede
fix(icons): fix typo in index.tsx
HugginFaceIcon -> HuggingFaceIcon
2023-07-11 02:34:35 +09:00
Gabriel Luiz Freitas Almeida
c9fd97f1f6 formatting 2023-07-10 13:58:48 -03:00
Gabriel Luiz Freitas Almeida
02fc2004e1 🐛 fix(textsplitters.py): change default value of Separator field from "." to "\\n" to correctly split text by newline characters 2023-07-10 13:54:46 -03:00
Gabriel Luiz Freitas Almeida
8f9bfd2a7c 🐛 fix(loading.py): fix issue with separators being escaped strings by decoding them using unicode-escape encoding 2023-07-10 13:50:45 -03:00
Gabriel Luiz Freitas Almeida
f56e31163a 🐛 fix(types.py): handle KeyError when formatting prompt with artifacts to prevent application crash
🔀 refactor(types.py): remove "handle_keys" from artifacts before formatting prompt to avoid format errors
2023-07-10 13:22:44 -03:00
Gabriel Luiz Freitas Almeida
df348b019d 🔧 chore(memories.py): hide "entity_store" field in MemoryFrontendNode class to improve code readability and remove unnecessary code 2023-07-10 12:55:11 -03:00
Cristhian Zanforlin Lousa
f751927ab1 🎨 style(dropdownComponent/index.tsx): add custom-scroll class to dropdown options to enable custom scrolling 2023-07-10 12:15:39 -03:00
Cristhian Zanforlin Lousa
efbc23d6bc 🐛 fix(codeAreaComponent): update class names to improve styling and semantics
🐛 fix(promptComponent): remove unnecessary div wrapper
🐛 fix(textAreaComponent): update class names to improve styling and semantics
2023-07-10 12:01:25 -03:00
anovazzi1
c8cdb89da1 using new examples for testing 2023-07-10 11:36:16 -03:00
Cristhian Zanforlin Lousa
ea8d6668de 🐛 fix(EditNodeModal): use the 'disabled' prop value instead of hardcoded 'false' to control the disabled state of input components 2023-07-10 10:32:19 -03:00
Cristhian Zanforlin Lousa
243b59507b 🐛 fix(parameterComponent): use strict equality operator (===) instead of loose equality operator (==) for item.type comparison to improve code quality and avoid potential bugs
🐛 fix(parameterComponent): update style prop value in ShadTooltip component to use class names 'tooltip-fixed-width' and 'custom-scroll' for consistent styling and better readability
🐛 fix(parameterComponent): update disabled prop value in TextAreaComponent to use the disabled variable passed as a prop for consistency and better code organization
🐛 fix(AccordionComponent): use strict equality operator (===) instead of loose equality operator (==) for open.length comparison to improve code quality and avoid potential bugs
🐛 fix(codeAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(codeAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(codeAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(codeAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(inputFileComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(inputFileComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(inputFileComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(inputFileComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(intComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(intComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(promptComponent): add missing dependencies to useEffect dependency array to avoid potential bugs and improve code quality
🐛 fix(promptComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(textAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(textAreaComponent): remove unnecessary space in className prop value to improve code readability
🐛 fix(tabsContext): change getTweak initial state from an object to an empty array to match the expected type and avoid potential bugs
🐛 fix(ApiModal): add missing curly braces around the buildTweaks function call to ensure the correct value is pushed to the tweak.current array

🐛 fix(EditNodeModal): remove unnecessary 'save' variable from useContext destructuring
🐛 fix(chatMessage): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(chatModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(codeAreaModal): add 'setCloseEdit' to useContext destructuring and add 'setModalOpen' function
🐛 fix(chatInput): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(chatMessage): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(formModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(formModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(formModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(formModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(genericModal): use strict equality operator (===) instead of loose equality operator (==) for comparison
🐛 fix(flow): add missing newline at the end of the file
🐛 fix(tabs): add missing import for TweaksType from flow

🐛 fix(utils.ts): change comparison operator from '==' to '===' for better type safety and strict equality check
2023-07-10 10:29:09 -03:00
Gabriel Luiz Freitas Almeida
650275db8a 🔧 chore(base.py): add __repr__ method to Graph class for better debugging and representation 2023-07-10 08:05:18 -03:00
Gabriel Luiz Freitas Almeida
d8dee14ed5 🔨 refactor(base.py): refactor the _build method in the Vertex class for better readability and maintainability
🐛 fix(base.py): fix a bug where the built object is not updated correctly in the Vertex class
 feat(base.py): add validation to check if the built object is None in the Vertex class
2023-07-09 18:09:53 -03:00
Gabriel Luiz Freitas Almeida
008a1c4079 🐛 fix(types.py): replace eval() with ast.literal_eval() to safely evaluate headers parameter as dictionary-like string
🐛 fix(process.py): rename input parameter to flow for clarity and to avoid shadowing built-in function
2023-07-09 18:02:12 -03:00
Gabriel Luiz Freitas Almeida
d0124dc4cc 🔥 refactor(chatModal/index.tsx): remove unused setNoticeData function from alertContext
🔒 chore(chatModal/index.tsx): remove unused lockChat state variable and setLockChat function
2023-07-09 11:18:21 -03:00
Gabriel Luiz Freitas Almeida
612c7a988c 🔥 refactor(callback.py): remove unused imports to improve code readability and maintainability 2023-07-09 11:14:06 -03:00
Gabriel Luiz Freitas Almeida
352cb8bc85 formatting 2023-07-09 11:12:41 -03:00
Gabriel Luiz Freitas Almeida
5ece7e2fbc 🔥 refactor(loading.py): remove unused imports and reorganize import statements for better readability 2023-07-09 11:10:35 -03:00