Commit graph

10,698 commits

Author SHA1 Message Date
Lucas Oliveira
3ab1aa0d8e Added Untitled as name of API Keys without name 2024-06-04 18:26:43 -03:00
Lucas Oliveira
828df1ab7b Removed API Keys page 2024-06-04 18:15:14 -03:00
Lucas Oliveira
24ba353a10 Added table of API Keys at settings page 2024-06-04 18:13:53 -03:00
Lucas Oliveira
c8d70d34e3 Added API Keys page into Settings 2024-06-04 17:58:46 -03:00
Lucas Oliveira
d4a0c161c5 Added table renderer on API Keys page 2024-06-04 17:53:24 -03:00
Lucas Oliveira
5bbba6799a Fixed backend not returning createdAt 2024-06-04 17:46:52 -03:00
Lucas Oliveira
e3832916fa Removed store api key modal 2024-06-04 16:13:07 -03:00
Lucas Oliveira
9a9b088843 Added redirect to langflow.store 2024-06-04 16:12:37 -03:00
Lucas Oliveira
4d738e2ae8 Fixed icon not being on the end of the button when its text is not big enough 2024-06-04 15:42:56 -03:00
cristhianzl
e6c65aff0b Merge branch 'fix/minor_bugs' of https://github.com/langflow-ai/langflow into fix/minor_bugs 2024-06-04 15:33:29 -03:00
cristhianzl
1719895367 ♻️ (reactflowUtils.ts): reorder imports for better readability
♻️ (reactflowUtils.ts): remove console.log statements to clean up code
♻️ (reactflowUtils.ts): fix formatting issues and align code style

♻️ (reactflowUtils.ts): remove trailing commas to improve code consistency and readability
2024-06-04 15:33:24 -03:00
Lucas Oliveira
9d49597dae Merge remote-tracking branch 'origin/dev' into fix/minor_bugs 2024-06-04 14:25:51 -03:00
Lucas Oliveira
c8fa4d8a37 Removed div that made an extra space 2024-06-04 14:25:05 -03:00
Lucas Oliveira
bb6578e0a5 Fixed classes of sidebar to make it more like the main page 2024-06-04 14:21:12 -03:00
Nicolò Boschi
82a3733ed7
setting fallback_to_env_var should be respected in api calls (#2058) 2024-06-04 09:36:52 -07:00
Gabriel Luiz Freitas Almeida
22a7b7e75f
(refactor) Update pytest arguments in Makefile for better test execution (#2063)
* refactor: Update pytest arguments in Makefile for better test execution

The Makefile has been modified to update the pytest arguments in the `tests` target. The `--instafail` flag has been replaced with `-ra -n auto -m "not api_key_required"`. This change allows for better test execution by including additional options for reporting, parallelization, and test selection.

Note: The commit message has been generated based on the provided code changes and recent commits.

*  (test_endpoints.py): add pytest marker 'api_key_required' to mark tests that require an API key for authorization. This helps in easily identifying and managing tests that need special permissions.
2024-06-04 08:59:02 -07:00
Lucas Oliveira
ee705b548f Added icons 2024-06-04 11:54:32 -03:00
Lucas Oliveira
98e40f25e6 Fixed id scrolling when clicking from Store 2024-06-04 11:52:08 -03:00
Mendon Kissling
dae11df7da
[Docs] - Update gif (#2062)
* Update docs gif to align with readme
2024-06-04 10:46:02 -04:00
Mendon Kissling
fedbf906d9 update-gif 2024-06-04 10:37:30 -04:00
Lucas Oliveira
cad4c508a9 Fixed button layout to have loading the same size as the original button 2024-06-04 11:35:37 -03:00
Lucas Oliveira
5b83bde64e Returned loader to default, fixed buttons not working with asChild 2024-06-04 11:17:17 -03:00
Lucas Oliveira
2c851a9d5c Fix naming of endpoint 2024-06-04 11:09:00 -03:00
Lucas Oliveira
f1aaa162e2 Changed strategy to not have to apply classes to different div elements, not breaking the other buttons. 2024-06-04 10:49:36 -03:00
Lucas Oliveira
c36053dc55 Fixed button not being able to handle multiple children when asChild is done 2024-06-04 10:26:52 -03:00
Lucas Oliveira
9eacd3f9d6 Fixed sidebar button to not look strange with the new Button classes 2024-06-04 10:15:24 -03:00
Lucas Oliveira
b5d9e0608d Fixed classes on Button to work with all of the current buttons 2024-06-04 10:15:02 -03:00
Lucas Oliveira
59c8eba132 Fixed Button classes to allow loading 2024-06-04 09:58:44 -03:00
Lucas Oliveira
3d8a0acbc1 Fixed sidebar buttons not being different when path is equal 2024-06-04 09:37:23 -03:00
Lucas Oliveira
eefac9ef48 Added Store API Key configuration on General Settings page 2024-06-04 09:20:55 -03:00
Lucas Oliveira
65ae9f04e4 Fixed bottom padding on settings pages 2024-06-04 09:20:32 -03:00
Lucas Oliveira
1f2cd32340 Modularized Loading on buttons 2024-06-04 09:12:28 -03:00
Lucas Oliveira
5b2791a2c4 Formatting 2024-06-04 08:19:10 -03:00
Lucas Oliveira
6874f380f9 Merge remote-tracking branch 'origin/dev' into fix/minor_bugs 2024-06-03 17:04:42 -03:00
ogabrielluiz
23d3c45a1b refactor: Update Dockerfile and render.yaml for pre-release deployment
The Dockerfile `render.pre-release.Dockerfile` has been added to the repository, which sets the base image to `langflowai/langflow:1.0-alpha`. Additionally, the `render.yaml` file has been modified to use the new Dockerfile path `./docker/render.pre-release.Dockerfile` for the `langflow` web service. This change ensures that the pre-release version of the application is deployed correctly.

Note: The commit message has been generated based on the provided code changes and recent commits.
2024-06-03 14:05:33 -03:00
ogabrielluiz
25b99ef590 📝 (README.md): Update deployment links to point to the correct branches for deployment purposes 2024-06-03 14:03:23 -03:00
Gabriel Luiz Freitas Almeida
d2f144829d
Update uvicorn server configuration and add pool config (#2052)
The Makefile has been updated to add support for specifying the number
of workers for the uvicorn server. The pyproject.toml file has also been
updated to upgrade the uvicorn dependency to version 0.30.0.
Additionally, the DatabaseService class in service.py has been
refactored to use the pool_size and max_overflow settings from the
SettingsService. This change allows for better control over the number
of connections in the connection pool and the number of connections that
can be opened beyond the pool size. The create_engine function has also
been modified to pass the pool_size and max_overflow parameters.
2024-06-03 09:10:02 -07:00
ogabrielluiz
5ea2699b29 refactor: Update DatabaseService to use settings_service for database URL 2024-06-03 13:08:12 -03:00
ogabrielluiz
ced4fd0800 refactor: Update OpenAIModelComponent to use float type for temperature parameter
The OpenAIModelComponent class in OpenAIModel.py has been updated to use the float type for the temperature parameter instead of the Optional[float] type. This change ensures consistency and improves code readability. The default value for the temperature parameter remains unchanged at 0.1.

Note: The commit message has been generated based on the provided code changes and recent commits.
2024-06-03 13:05:37 -03:00
ogabrielluiz
06df938c00 refactor: Update DatabaseService to use settings_service for database URL
The DatabaseService class in service.py has been updated to use the settings_service object for retrieving the database URL instead of directly passing it as a parameter. This change improves code organization and ensures consistency with other services that rely on the settings_service. The necessary modifications have been made in both the DatabaseService class and the DatabaseServiceFactory class.

Note: The commit message has been generated based on the provided code changes and recent commits.
2024-06-03 13:04:56 -03:00
ogabrielluiz
099d44bad0 refactor: Update database service to use pool_size and max_overflow settings
The DatabaseService class in service.py has been updated to use the pool_size and max_overflow settings from the SettingsService. This change allows for better control over the number of connections in the connection pool and the number of connections that can be opened beyond the pool size. The commit also includes necessary modifications to the create_engine function to pass the pool_size and max_overflow parameters.

Note: The commit message has been generated based on the provided code changes and recent commits.
2024-06-03 13:02:49 -03:00
ogabrielluiz
6033c14875 🔧 (Makefile): Add support for specifying the number of workers for uvicorn server
⬆️ (pyproject.toml): Upgrade uvicorn dependency to version 0.30.0
2024-06-03 12:56:54 -03:00
ogabrielluiz
5fe568cc6c refactor: Update factory_restart_space.py to use environment variable for Hugging Face API token 2024-06-03 09:54:47 -03:00
ogabrielluiz
aafaa166b4 chore: Update package versions in pyproject.toml files 2024-06-03 09:35:57 -03:00
ogabrielluiz
bbe792b3e1 refactor: Update process_tweaks function to include stream parameter
The process_tweaks function in endpoints.py has been updated to include a new stream parameter. This change allows for more flexibility in processing tweaks based on the stream value. The commit also includes necessary modifications to the simple_run_flow function to pass the stream parameter to the process_tweaks function.

Note: The commit message has been generated based on the provided code changes and recent commits.
2024-06-03 09:31:40 -03:00
Lucas Oliveira
6a868729b8 Made Folders more pleasing 2024-06-03 00:23:36 -03:00
Lucas Oliveira
46872feb48 Passed duplicate flow function to main page 2024-06-03 00:16:11 -03:00
Lucas Oliveira
aa568f551a Fixed Endpoint Name labeling 2024-06-03 00:00:28 -03:00
Lucas Oliveira
4b4800defb Fixed node toolbar allowing moving the nodes 2024-06-02 23:58:25 -03:00
Lucas Oliveira
cbe2a8ad75 Fixed tooltip that does not need removal of portal 2024-06-02 23:56:36 -03:00