Commit graph

497 commits

Author SHA1 Message Date
Gabriel Luiz Freitas Almeida
c3053a3442 Update langflow-base dependency path 2024-04-02 11:21:43 -03:00
Gabriel Luiz Freitas Almeida
b8191553d1 Update version numbers and remove unnecessary dependencies 2024-04-02 11:17:08 -03:00
Lucas Oliveira
c75d781dc3 Revert "Fixed supabase not commited"
This reverts commit afb10a6262.
2024-04-02 10:33:58 +02:00
Lucas Oliveira
afb10a6262 Fixed supabase not commited 2024-04-02 10:25:44 +02:00
Gabriel Luiz Freitas Almeida
6e87be0f5d Update dependencies in pyproject.toml 2024-04-02 00:11:33 -03:00
Gabriel Luiz Freitas Almeida
7c5506ff4c Update langflow-base to version 0.0.15 and fix setup_env script 2024-04-01 23:40:06 -03:00
Gabriel Luiz Freitas Almeida
8ed4b30e96 Update dependencies versions 2024-04-01 22:45:22 -03:00
Gabriel Luiz Freitas Almeida
263b09303b Update dependencies in poetry.lock and pyproject.toml 2024-04-01 21:22:51 -03:00
Gabriel Luiz Freitas Almeida
c99d538220 Update dependencies in poetry.lock and pyproject.toml 2024-04-01 21:13:43 -03:00
Gabriel Luiz Freitas Almeida
810d91a911 Update dependencies in poetry.lock and pyproject.toml 2024-04-01 21:07:02 -03:00
Gabriel Luiz Freitas Almeida
e82c7369bd Update dependencies in pyproject.toml and poetry.lock files 2024-04-01 20:51:37 -03:00
Gabriel Luiz Freitas Almeida
08b5b51847 Update dependencies in pyproject.toml 2024-04-01 20:46:25 -03:00
anovazzi1
e61896bc1f
remove dead code and unused dependencies (#1488)
* added esLint to frontend project

* Remove formModalPropsType from index.ts

* Remove chat input component

* Delete codeBlock and fileComponent components

* Remove unused code for BuildTrigger component

* Refactor Chat component and remove unused code

* Delete chatTrigger component

* Delete unused SVG and PNG files

* Remove LightTooltipComponent

* Remove LoadingSpinner component

* Delete RadialProgressComponent

* Delete ReactTooltipComponent

* Remove TooltipComponent

* Delete ElementStack component

* Remove ToggleComponent

* Remove unused dependencies from package.json

* Update package json

* add accordion

* change accordion sidebar to shadcn

* added million lint

* Remove MillionCompiler plugin from Vite config

* Refactor authContext autoLogin dependency

* Add console.log statements for debugging

* Refactored position of elements in IO branch

* fix assets imports

* fix re-render on pageComponent

* Add StrictMode to root render and update key in ExtraSidebarComponent

* Add showCanvas state and useEffect to update it to improve performance

* Refactor FlowPage component and remove ExtraSidebar from main area

* Refactor FlowToolbar to prevent Unnecessary re-render

* get node position with zustand in NodeToolbarComponent

* Fix ShareModal rendering issue

* Remove ExtraSidebar component and fix CodeAreaComponent bug

* Refactor: Use useMemo to avoid unnecessary render

* merge zustandIo

* Remove console.log statements

* Update package-lock.json and refactor extraSidebarComponent

* update package json

* Remove unused msgpack wheel file and add new nvidia_nvjitlink_cu12 wheel file

* Fix import formatting in loading.py

* Imported missing module and removed unused import

---------

Co-authored-by: cristhianzl <cristhian.lousa@gmail.com>
Co-authored-by: Lucas Oliveira <lucas.edu.oli@hotmail.com>
Co-authored-by: igorrCarvalho <igorsilvabhz6@gmail.com>
Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@logspace.ai>
2024-03-30 17:09:51 -03:00
Gabriel Luiz Freitas Almeida
04f635d669 Update pinecone-client and pytest-asyncio versions 2024-03-29 22:20:43 -03:00
Gabriel Luiz Freitas Almeida
2b61649dbf Update dependencies in pyproject.toml 2024-03-29 19:15:06 -03:00
Gabriel Luiz Freitas Almeida
5c43bd3a5f Merge remote-tracking branch 'origin/dev' into zustand/io/migration 2024-03-29 14:54:48 -03:00
Gabriel Luiz Freitas Almeida
feb29ddbb9
Fix unique constraints for id column (#1583)
* Fix unique constraints for id column

* Update version in pyproject.toml
2024-03-29 14:18:01 -03:00
Gabriel Luiz Freitas Almeida
54aeee570b Add assemblyai dependency and update websockets version 2024-03-27 17:42:34 -03:00
Gabriel Luiz Freitas Almeida
9c029424ab Add html2text package 2024-03-27 16:06:31 -03:00
Gabriel Luiz Freitas Almeida
f60823a40a Update dependencies and install poetry-monorepo-dependency-plugin 2024-03-26 16:22:17 -03:00
Matheus Jacques
8172e62236
Split Langflow into Langflow and Langflow Base (#1562)
* Initial Restructure

* Replace import langflow for import langflow_base

* Fix dependencies

* 🔧 chore(Makefile): refactor build process to separate base and frontend builds for better organization and maintainability

* 🚀 chore(Makefile): update build_frontend command to copy frontend build to the correct directory
🔖 chore(pyproject.toml): update python and httpx dependencies versions
🔧 chore(__init__.py): update import statement for load_flow_from_json function

* 🔖 chore(pyproject.toml): update package version from 0.0.6 to 0.0.8 to reflect changes in the codebase

* 🚀 feat(server.ts): change port variable case from lowercase port to uppercase PORT to improve semantics
🚀 feat(server.ts): add support for process.env.PORT environment variable to be able to run app on a configurable port

* 🐛 fix(server.ts): change port variable case from lowercase port to uppercase PORT to improve semantics
 feat(server.ts): add support for process.env.PORT environment variable to be able to run app on a configurable port
🚚 chore(pyproject.toml): update langflow-base version from 0.0.8 to 0.0.10
 feat(server.ts): add new agent component LCAgentComponent to langflow_base
 feat(server.ts): add new model component LCModelComponent to langflow_base
 feat(server.ts): add new helper functions docs_to_records and records_to_text to langflow_base
 feat(server.ts): add new flow helper functions list_flows, load_flow, run_flow, generate_function_for_flow, get_flow_inputs, build_schema_from_inputs to langflow_base
 feat(server.ts): add new prompt component PromptComponent to langflow_base
 feat(server.ts): add new chat components ChatInput and ChatOutput to langflow_base
 feat(server.ts): add new model component OpenAIModelComponent to langflow_base
🚚 chore(main.py): update import path from langflow.main to langflow_base.main
🚚 chore(service.py): update import path from langflow.services.database.manager to langflow_base.services.database.manager
🚚 chore(factory.py): update import path from langflow.services to langflow_base.services
🚚 chore(service.py): update import path from langflow.services.plugins to langflow_base.services.plugins
🚚 chore(utils.py): update import path from langflow.services to langflow_base.services
🚚 chore(validate.py): update import path from langflow.field_typing to langflow_base.field_typing
🚚 chore(pyproject.toml): update langflow-base version from 0.0.8 to 0.0.10

* Update Makefile to install backend dependencies and build langflow

* Add langflow main module and update __init__.py

* Update langflow install process to use implicit namespace

* Add langflow-base as a local dependency

* Add setup_poetry target to Makefile

* Update Poetry version and add poetry-monorepo-dependency-plugin

* Refactor code to improve performance and readability

* Update imports to custom and load

* Update content-hash in poetry.lock

---------

Co-authored-by: Matheus <jacquesmats@gmail.com>
Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@logspace.ai>
2024-03-26 09:26:30 -03:00
Gabriel Luiz Freitas Almeida
ef321fcebe Update pyproject.toml with new dependencies 2024-03-26 00:01:06 -03:00
Gabriel Luiz Freitas Almeida
e8630dac7f
Refactor ServiceFactory and Dependencies (#1560)
* Update dependencies for OpenTelemetry

* Update service dependency logic and add first version of telemetry service

* Remove telemetry service and related code
2024-03-25 10:00:39 -03:00
Daiki Sakai
0b380afb66
Migrate to langchain_anthropic and add ChatAnthropic enhancements (#1551)
Migrate to langchain_anthropic and enhance ChatAnthropic functionality

- Replace langchain_community with langchain_anthropic for ChatAnthropic
- Add support for selecting the Claude model in ChatAnthropic
- Implement top_p and top_k parameter support in ChatAnthropic
2024-03-22 08:47:34 -03:00
Gabriel Luiz Freitas Almeida
c1d93a0855 Bump version to 0.6.11 in pyproject.toml 2024-03-22 08:35:43 -03:00
Gabriel Luiz Freitas Almeida
6bb6a9f5b9 Add python-docx package version 1.1.0 2024-03-21 11:59:20 -03:00
Gabriel Luiz Freitas Almeida
0b4b4c0c87 Update version number in pyproject.toml 2024-03-21 09:49:29 -03:00
Gabriel Luiz Freitas Almeida
6262849463 Add defusedxml and langchain-anthropic packages 2024-03-21 09:46:09 -03:00
Gabriel Luiz Freitas Almeida
a00bab4b56 Update anthropic and add crewai 2024-03-20 20:57:42 -03:00
Gabriel Luiz Freitas Almeida
6fce679c8e Update pydantic version to 2.5.0 and dspy-ai to 2.4.0 2024-03-08 17:31:10 -03:00
Gabriel Luiz Freitas Almeida
f00eddd114 Add dspy package and its dependencies 2024-03-08 17:08:21 -03:00
Gabriel Luiz Freitas Almeida
f2cbc0c2f1 Add respx library for mocking HTTP requests 2024-03-08 11:37:52 -03:00
Gabriel Luiz Freitas Almeida
34357a7fb8 Update version to 0.6.10 in pyproject.toml 2024-03-04 08:44:50 -03:00
Gabriel Luiz Freitas Almeida
8e6c38f195 Merge remote-tracking branch 'origin/dev' into zustand/io/migration 2024-02-29 16:21:23 -03:00
Gabriel Luiz Freitas Almeida
5ed9b6e92e Update version to 0.6.9 in pyproject.toml 2024-02-29 15:23:02 -03:00
Gabriel Luiz Freitas Almeida
13af72f7e4 Bump version to 0.6.8 in pyproject.toml 2024-02-28 12:54:39 -03:00
dependabot[bot]
b84c1d4ec3
Bump orjson from 3.9.3 to 3.9.15 (#1469)
Bumps [orjson](https://github.com/ijl/orjson) from 3.9.3 to 3.9.15.
- [Release notes](https://github.com/ijl/orjson/releases)
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ijl/orjson/compare/3.9.3...3.9.15)

---
updated-dependencies:
- dependency-name: orjson
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-28 11:31:09 -03:00
Gabriel Luiz Freitas Almeida
5c73c01ea8 Update version to 0.7.0a0 in pyproject.toml 2024-02-26 22:01:44 -03:00
Gabriel Luiz Freitas Almeida
635f8d7858 Update dependencies in pyproject.toml 2024-02-26 21:50:46 -03:00
Gabriel Luiz Freitas Almeida
55c595eaea Add markdown package and update unstructured package 2024-02-26 20:25:59 -03:00
Gabriel Luiz Freitas Almeida
8cd3853e2e Update chromadb and orjson versions 2024-02-26 15:52:08 -03:00
Gabriel Luiz Freitas Almeida
64c7ef37ad Merge remote-tracking branch 'origin/dev' into zustand/io/migration 2024-02-26 13:56:56 -03:00
Gabriel Luiz Freitas Almeida
2d426301a1 Update dependencies in pyproject.toml 2024-02-26 10:09:36 -03:00
Gabriel Luiz Freitas Almeida
85a67488cc Remove google-cloud-aiplatform dependency 2024-02-22 14:59:56 -03:00
Gabriel Luiz Freitas Almeida
eda14b1dc4 Update version number in pyproject.toml 2024-02-21 22:35:44 -03:00
cristhianzl
862770daea Merge branch 'dev' into zustand/io/migration 2024-02-19 20:45:28 -03:00
Gabriel Luiz Freitas Almeida
d0722f2212 Update version to 0.6.7a5 in pyproject.toml 2024-02-19 13:43:09 -03:00
Gabriel Luiz Freitas Almeida
b95169c1e9 Update version to 0.6.7a4 in pyproject.toml 2024-02-19 13:37:06 -03:00
Gabriel Luiz Freitas Almeida
e5bc9aca3f Update version to 0.6.7a3 in pyproject.toml 2024-02-19 13:27:21 -03:00
Gabriel Luiz Freitas Almeida
4b3cc34433 Update zep-python version to 1.5.0 2024-02-18 20:33:48 -03:00