├── pages └── Home │ ├── queries │ ├── DeleteLLM │ │ ├── DeleteLLM.txt │ │ └── metadata.json │ ├── Support_Request │ │ ├── Support_Request.txt │ │ └── metadata.json │ ├── AddNewLLM │ │ ├── AddNewLLM.txt │ │ └── metadata.json │ ├── GetListOfLLMs │ │ └── metadata.json │ ├── FetchModel_Config │ │ └── metadata.json │ └── ConnectLiteLLMBaseURL │ │ └── metadata.json │ ├── widgets │ ├── Divider1.json │ ├── Divider4.json │ ├── Add_Model │ │ ├── Add_Model_Questions │ │ │ ├── Divider2.json │ │ │ ├── Divider3.json │ │ │ ├── Add_Model_RPM.json │ │ │ ├── Text16.json │ │ │ ├── Add_Model_Group_Name.json │ │ │ ├── Text17.json │ │ │ ├── OutputcostCopy.json │ │ │ ├── Add_Model_Target_Name.json │ │ │ ├── Outputcost.json │ │ │ ├── inputcost.json │ │ │ ├── Add_Model_Target_NameCopy.json │ │ │ ├── Add_Model_Target_NameCopyCopy1.json │ │ │ ├── Add_Model_Target_NameCopyCopy.json │ │ │ ├── TargetAPIBaseInput.json │ │ │ ├── TargetModelNameInput.json │ │ │ ├── ModelGroupValueInput.json │ │ │ ├── Add_model_tpm_val.json │ │ │ ├── Add_Model_RPM_Value.json │ │ │ ├── outputcostvalue.json │ │ │ ├── maxtokens.json │ │ │ ├── inputcostvalue.json │ │ │ ├── TargetAPIKeyInput.json │ │ │ └── Add_Model_Questions.json │ │ ├── IconButton5.json │ │ ├── CloseAddNewModel.json │ │ ├── Add_model_modal_title.json │ │ ├── Button17.json │ │ └── Add_Model.json │ ├── Statbox1 │ │ ├── IconButton6.json │ │ ├── Image2.json │ │ ├── Text25.json │ │ ├── Button19.json │ │ └── Statbox1.json │ ├── Modal3 │ │ ├── IconButton3.json │ │ ├── Button12.json │ │ ├── Button13.json │ │ ├── Text9.json │ │ ├── Container4 │ │ │ ├── Text20.json │ │ │ ├── Text22.json │ │ │ ├── Model_id_Input.json │ │ │ ├── Text23.json │ │ │ └── Container4.json │ │ └── Modal3.json │ ├── Contact_Us │ │ ├── IconButton4.json │ │ ├── Accepted_Terms.json │ │ ├── Button14.json │ │ ├── Text10.json │ │ ├── send_Support_request.json │ │ ├── user_email.json │ │ ├── Feedback_Input.json │ │ └── Contact_Us.json │ ├── Modal2 │ │ ├── IconButton2.json │ │ ├── Button8.json │ │ ├── Button11.json │ │ ├── Info.json │ │ ├── Container2 │ │ │ ├── Text8.json │ │ │ ├── Text8Copy.json │ │ │ ├── Text8CopyCopyCopy.json │ │ │ ├── Text8CopyCopy.json │ │ │ ├── Text12.json │ │ │ ├── Text13.json │ │ │ ├── Text15.json │ │ │ ├── Text14.json │ │ │ └── Container2.json │ │ ├── Text5.json │ │ └── Modal2.json │ ├── Button3.json │ ├── Sponsor_button.json │ ├── Container3 │ │ ├── AddModel.json │ │ ├── Button18.json │ │ ├── Text11.json │ │ ├── ModelList.json │ │ └── Container3.json │ ├── Github_Button.json │ ├── Litellm_docs_button.json │ ├── Container1 │ │ ├── Text3.json │ │ ├── Button5.json │ │ ├── Input1.json │ │ ├── Input2.json │ │ └── Container1.json │ ├── Container5 │ │ ├── Text24.json │ │ ├── TBB.json │ │ └── Container5.json │ └── Text1.json │ └── Home.json ├── appsmith_import.png ├── metadata.json ├── theme.json ├── application.json ├── LICENSE └── README.md /pages/Home/queries/DeleteLLM/DeleteLLM.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id": "{{Model_id_Input.text}}" 3 | } -------------------------------------------------------------------------------- /appsmith_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kno2gether/LiteLLMProxyUI/HEAD/appsmith_import.png -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "clientSchemaVersion": 1, 3 | "serverSchemaVersion": 7, 4 | "fileFormatVersion": 5 5 | } -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Default-New", 3 | "displayName": "Modern", 4 | "isSystemTheme": true, 5 | "deleted": false 6 | } -------------------------------------------------------------------------------- /pages/Home/queries/Support_Request/Support_Request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "email": "{{user_email.text}}", 3 | "feedback": "{{Feedback_Input.text}}", 4 | "promotioncheck": "{{Accepted_Terms.isChecked}}" 5 | } -------------------------------------------------------------------------------- /pages/Home/queries/AddNewLLM/AddNewLLM.txt: -------------------------------------------------------------------------------- 1 | { 2 | "model_name": "{{ModelGroupValueInput.text}}", 3 | "litellm_params": { 4 | "model": "{{TargetModelNameInput.text}}", 5 | "api_base": "{{TargetAPIBaseInput.text}}", 6 | "api_key": "{{TargetAPIKeyInput.text}}", 7 | "rpm": "{{Add_Model_RPM_Value.text}}", 8 | "tpm": "{{Add_model_tpm_val.text}}" 9 | }, 10 | "model_info": { 11 | "input_cost_per_token": "{{inputcostvalue.text}}", 12 | "output_cost_per_token": "{{outputcostvalue.text}}", 13 | "max_tokens": "{{maxtokens.text}}" 14 | } 15 | } -------------------------------------------------------------------------------- /application.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "id": "Home", 5 | "isDefault": true 6 | } 7 | ], 8 | "viewMode": false, 9 | "appIsExample": false, 10 | "unreadCommentThreads": 0, 11 | "clonedFromApplicationId": "658170f4b2a9615a33217f44", 12 | "unpublishedApplicationDetail": { 13 | "appPositioning": { 14 | "type": "AUTO" 15 | } 16 | }, 17 | "color": "#E3DEFF", 18 | "unpublishedCustomJSLibs": [], 19 | "publishedCustomJSLibs": [], 20 | "evaluationVersion": 2, 21 | "applicationVersion": 2, 22 | "collapseInvisibleWidgets": true, 23 | "isManualUpdate": false, 24 | "deleted": false 25 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 kno2gether 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /pages/Home/widgets/Divider1.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Divider1", 4 | "thickness": 2, 5 | "displayName": "Divider", 6 | "iconSVG": "/static/media/icon.3b7d47d7bd70da418a827287042cbb7f.svg", 7 | "searchTags": ["line"], 8 | "topRow": 5.5984375, 9 | "bottomRow": 9.5984375, 10 | "parentRowSpace": 10, 11 | "type": "DIVIDER_WIDGET", 12 | "capType": "nc", 13 | "hideCard": false, 14 | "mobileRightColumn": 64, 15 | "animateLoading": true, 16 | "parentColumnSpace": 26.234375, 17 | "leftColumn": 0, 18 | "dynamicBindingPathList": [], 19 | "key": "mm4y69t9c7", 20 | "dividerColor": "#858282", 21 | "orientation": "horizontal", 22 | "strokeStyle": "solid", 23 | "isDeprecated": false, 24 | "rightColumn": 64, 25 | "widgetId": "w3cw2mz2sv", 26 | "capSide": 0, 27 | "minWidth": 450, 28 | "isVisible": true, 29 | "version": 1, 30 | "parentId": "0", 31 | "tags": ["Layout"], 32 | "renderMode": "CANVAS", 33 | "isLoading": false, 34 | "mobileTopRow": 1, 35 | "responsiveBehavior": "fill", 36 | "mobileLeftColumn": 0, 37 | "alignment": "start" 38 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Divider4.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 73, 3 | "widgetName": "Divider4", 4 | "thickness": 2, 5 | "displayName": "Divider", 6 | "iconSVG": "/static/media/icon.3b7d47d7bd70da418a827287042cbb7f.svg", 7 | "searchTags": ["line"], 8 | "topRow": 65.5953125, 9 | "bottomRow": 69.5953125, 10 | "parentRowSpace": 10, 11 | "type": "DIVIDER_WIDGET", 12 | "capType": "nc", 13 | "hideCard": false, 14 | "mobileRightColumn": 64, 15 | "animateLoading": true, 16 | "parentColumnSpace": 26.125, 17 | "leftColumn": 0, 18 | "dynamicBindingPathList": [], 19 | "key": "jhiu9wmh0m", 20 | "dividerColor": "#858282", 21 | "orientation": "horizontal", 22 | "strokeStyle": "solid", 23 | "isDeprecated": false, 24 | "rightColumn": 64, 25 | "widgetId": "kbp5wj0inb", 26 | "capSide": 0, 27 | "minWidth": 450, 28 | "isVisible": true, 29 | "version": 1, 30 | "parentId": "0", 31 | "tags": ["Layout"], 32 | "renderMode": "CANVAS", 33 | "isLoading": false, 34 | "mobileTopRow": 69, 35 | "responsiveBehavior": "fill", 36 | "mobileLeftColumn": 0, 37 | "alignment": "start" 38 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Divider2.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 9, 3 | "widgetName": "Divider2", 4 | "thickness": 2, 5 | "displayName": "Divider", 6 | "iconSVG": "/static/media/icon.3b7d47d7bd70da418a827287042cbb7f.svg", 7 | "searchTags": ["line"], 8 | "topRow": 7.096875000000001, 9 | "bottomRow": 11.096875, 10 | "parentRowSpace": 10, 11 | "type": "DIVIDER_WIDGET", 12 | "capType": "nc", 13 | "hideCard": false, 14 | "mobileRightColumn": 64, 15 | "animateLoading": true, 16 | "parentColumnSpace": 7.9375, 17 | "leftColumn": 0, 18 | "dynamicBindingPathList": [], 19 | "key": "gaxos2sph2", 20 | "dividerColor": "#858282", 21 | "orientation": "horizontal", 22 | "strokeStyle": "solid", 23 | "isDeprecated": false, 24 | "rightColumn": 64, 25 | "widgetId": "l83f2bphdy", 26 | "capSide": 0, 27 | "minWidth": 450, 28 | "isVisible": true, 29 | "version": 1, 30 | "parentId": "f6ija1f84q", 31 | "tags": ["Layout"], 32 | "renderMode": "CANVAS", 33 | "isLoading": false, 34 | "mobileTopRow": 5, 35 | "responsiveBehavior": "fill", 36 | "mobileLeftColumn": 0, 37 | "alignment": "start" 38 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Divider3.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 54, 3 | "widgetName": "Divider3", 4 | "thickness": 2, 5 | "displayName": "Divider", 6 | "iconSVG": "/static/media/icon.3b7d47d7bd70da418a827287042cbb7f.svg", 7 | "searchTags": ["line"], 8 | "topRow": 52.98125000000001, 9 | "bottomRow": 56.98125000000001, 10 | "parentRowSpace": 10, 11 | "type": "DIVIDER_WIDGET", 12 | "capType": "nc", 13 | "hideCard": false, 14 | "mobileRightColumn": 64, 15 | "animateLoading": true, 16 | "parentColumnSpace": 7.9375, 17 | "leftColumn": 0, 18 | "dynamicBindingPathList": [], 19 | "key": "gaxos2sph2", 20 | "dividerColor": "#858282", 21 | "orientation": "horizontal", 22 | "strokeStyle": "solid", 23 | "isDeprecated": false, 24 | "rightColumn": 64, 25 | "widgetId": "tx9jtq2buc", 26 | "capSide": 0, 27 | "minWidth": 450, 28 | "isVisible": true, 29 | "version": 1, 30 | "parentId": "f6ija1f84q", 31 | "tags": ["Layout"], 32 | "renderMode": "CANVAS", 33 | "isLoading": false, 34 | "mobileTopRow": 50, 35 | "responsiveBehavior": "fill", 36 | "mobileLeftColumn": 0, 37 | "alignment": "start" 38 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Statbox1/IconButton6.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 10, 4 | "widgetName": "IconButton6", 5 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 6 | "displayName": "Icon button", 7 | "iconSVG": "/static/media/icon.b08054586989b185a0801e9a34f8ad49.svg", 8 | "searchTags": [ 9 | "click", 10 | "submit" 11 | ], 12 | "topRow": 18.4, 13 | "bottomRow": 22.4, 14 | "type": "ICON_BUTTON_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 62, 17 | "animateLoading": true, 18 | "leftColumn": 60.83168316831683, 19 | "dynamicBindingPathList": [ 20 | {"key": "buttonColor"}, 21 | {"key": "borderRadius"} 22 | ], 23 | "isDisabled": false, 24 | "key": "wx5g7kyipu", 25 | "isDeprecated": false, 26 | "rightColumn": 64, 27 | "iconName": "arrow-top-right", 28 | "widgetId": "f5fzp76e3l", 29 | "buttonStyle": "PRIMARY", 30 | "minWidth": 50, 31 | "isVisible": true, 32 | "version": 1, 33 | "parentId": "ozf3shnk8y", 34 | "tags": ["Buttons"], 35 | "renderMode": "CANVAS", 36 | "isLoading": false, 37 | "mobileTopRow": 2, 38 | "responsiveBehavior": "hug", 39 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 40 | "mobileLeftColumn": 46, 41 | "buttonVariant": "PRIMARY", 42 | "alignment": "end" 43 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/IconButton3.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 4, 4 | "widgetName": "IconButton3", 5 | "onClick": "{{closeModal('Modal3')}}", 6 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 7 | "displayName": "Icon button", 8 | "iconSVG": "/static/media/icon.b08054586989b185a0801e9a34f8ad49.svg", 9 | "searchTags": [ 10 | "click", 11 | "submit" 12 | ], 13 | "topRow": 0, 14 | "bottomRow": 4, 15 | "type": "ICON_BUTTON_WIDGET", 16 | "hideCard": false, 17 | "mobileRightColumn": 64, 18 | "animateLoading": true, 19 | "leftColumn": 58.26008968609865, 20 | "dynamicBindingPathList": [ 21 | {"key": "buttonColor"}, 22 | {"key": "borderRadius"} 23 | ], 24 | "iconSize": 24, 25 | "isDisabled": false, 26 | "key": "htiopsnxky", 27 | "isDeprecated": false, 28 | "rightColumn": 64, 29 | "iconName": "cross", 30 | "widgetId": "6sva8iqt0v", 31 | "minWidth": 50, 32 | "isVisible": true, 33 | "version": 1, 34 | "parentId": "qxdou9f9qw", 35 | "tags": ["Buttons"], 36 | "renderMode": "CANVAS", 37 | "isLoading": false, 38 | "mobileTopRow": 0, 39 | "responsiveBehavior": "hug", 40 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 41 | "mobileLeftColumn": 58, 42 | "buttonVariant": "TERTIARY", 43 | "alignment": "end" 44 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/IconButton5.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 4, 4 | "widgetName": "IconButton5", 5 | "onClick": "{{closeModal('Modal4')}}", 6 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 7 | "displayName": "Icon button", 8 | "iconSVG": "/static/media/icon.b08054586989b185a0801e9a34f8ad49.svg", 9 | "searchTags": [ 10 | "click", 11 | "submit" 12 | ], 13 | "topRow": 0, 14 | "bottomRow": 4, 15 | "type": "ICON_BUTTON_WIDGET", 16 | "hideCard": false, 17 | "mobileRightColumn": 64, 18 | "animateLoading": true, 19 | "leftColumn": 59.133079847908746, 20 | "dynamicBindingPathList": [ 21 | {"key": "buttonColor"}, 22 | {"key": "borderRadius"} 23 | ], 24 | "iconSize": 24, 25 | "isDisabled": false, 26 | "key": "wv1twdoubm", 27 | "isDeprecated": false, 28 | "rightColumn": 64, 29 | "iconName": "cross", 30 | "widgetId": "8vfpmwfbx5", 31 | "minWidth": 50, 32 | "isVisible": true, 33 | "version": 1, 34 | "parentId": "frh7tek3vn", 35 | "tags": ["Buttons"], 36 | "renderMode": "CANVAS", 37 | "isLoading": false, 38 | "mobileTopRow": 0, 39 | "responsiveBehavior": "hug", 40 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 41 | "mobileLeftColumn": 58, 42 | "buttonVariant": "TERTIARY", 43 | "alignment": "end" 44 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/IconButton4.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 4, 4 | "widgetName": "IconButton4", 5 | "onClick": "{{closeModal('Modal4')}}", 6 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 7 | "displayName": "Icon button", 8 | "iconSVG": "/static/media/icon.b08054586989b185a0801e9a34f8ad49.svg", 9 | "searchTags": [ 10 | "click", 11 | "submit" 12 | ], 13 | "topRow": 0, 14 | "bottomRow": 4, 15 | "type": "ICON_BUTTON_WIDGET", 16 | "hideCard": false, 17 | "mobileRightColumn": 64, 18 | "animateLoading": true, 19 | "leftColumn": 60.27906976744186, 20 | "dynamicBindingPathList": [ 21 | {"key": "buttonColor"}, 22 | {"key": "borderRadius"} 23 | ], 24 | "iconSize": 24, 25 | "isDisabled": false, 26 | "key": "wv1twdoubm", 27 | "isDeprecated": false, 28 | "rightColumn": 64, 29 | "iconName": "cross", 30 | "widgetId": "s6r98v6y51", 31 | "minWidth": 50, 32 | "isVisible": true, 33 | "version": 1, 34 | "parentId": "frd0zdq61p", 35 | "tags": ["Buttons"], 36 | "renderMode": "CANVAS", 37 | "isLoading": false, 38 | "mobileTopRow": 0, 39 | "responsiveBehavior": "hug", 40 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 41 | "mobileLeftColumn": 58, 42 | "buttonVariant": "TERTIARY", 43 | "alignment": "end" 44 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/IconButton2.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 4, 4 | "widgetName": "IconButton2", 5 | "onClick": "{{closeModal('Modal2')}}", 6 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 7 | "displayName": "Icon button", 8 | "iconSVG": "/static/media/icon.b08054586989b185a0801e9a34f8ad49.svg", 9 | "searchTags": [ 10 | "click", 11 | "submit" 12 | ], 13 | "topRow": 0, 14 | "bottomRow": 4, 15 | "type": "ICON_BUTTON_WIDGET", 16 | "hideCard": false, 17 | "mobileRightColumn": 64, 18 | "animateLoading": true, 19 | "leftColumn": 58.621848739495796, 20 | "dynamicBindingPathList": [ 21 | {"key": "buttonColor"}, 22 | {"key": "borderRadius"} 23 | ], 24 | "iconSize": 24, 25 | "isDisabled": false, 26 | "key": "nlbd3h9tao", 27 | "isDeprecated": false, 28 | "rightColumn": 64, 29 | "iconName": "cross", 30 | "widgetId": "njtwcb4f5v", 31 | "minWidth": 50, 32 | "isVisible": true, 33 | "version": 1, 34 | "parentId": "nfu8zlo8hn", 35 | "tags": ["Buttons"], 36 | "renderMode": "CANVAS", 37 | "isLoading": false, 38 | "mobileTopRow": 0, 39 | "responsiveBehavior": "hug", 40 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 41 | "mobileLeftColumn": 58, 42 | "buttonVariant": "TERTIARY", 43 | "alignment": "end" 44 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Statbox1/Image2.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)", 3 | "mobileBottomRow": 14, 4 | "widgetName": "Image2", 5 | "widthInPercentage": 0.9845238095238096, 6 | "displayName": "Image", 7 | "iconSVG": "/static/media/icon.69b0f0dd810281fbd6e34fc2c3f39344.svg", 8 | "topRow": 5.2, 9 | "bottomRow": 17.2, 10 | "parentRowSpace": 10, 11 | "type": "IMAGE_WIDGET", 12 | "hideCard": false, 13 | "mobileRightColumn": 12, 14 | "animateLoading": true, 15 | "parentColumnSpace": 16.046875, 16 | "dynamicTriggerPathList": [], 17 | "imageShape": "RECTANGLE", 18 | "leftColumn": 0, 19 | "dynamicBindingPathList": [{"key": "borderRadius"}], 20 | "defaultImage": "http://kno2gether.com/wp-content/uploads/2023/09/cropped-ideogram-4_clipdrop-background-removal_clipdrop-relight.png", 21 | "flexVerticalAlignment": "start", 22 | "key": "0pjdcwdwsc", 23 | "image": "", 24 | "isDeprecated": false, 25 | "rightColumn": 64, 26 | "objectFit": "contain", 27 | "widgetId": "gtf0flg677", 28 | "isVisible": true, 29 | "version": 1, 30 | "parentId": "ozf3shnk8y", 31 | "tags": ["Media"], 32 | "renderMode": "CANVAS", 33 | "isLoading": false, 34 | "mobileTopRow": 2, 35 | "maxZoomLevel": 1, 36 | "enableDownload": false, 37 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 38 | "mobileLeftColumn": 0, 39 | "enableRotation": false, 40 | "alignment": "start" 41 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Button8.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button8", 6 | "onClick": "{{closeModal('Modal2')}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 33.2, 15 | "bottomRow": 37.2, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 47, 19 | "animateLoading": true, 20 | "leftColumn": 31.73109243697479, 21 | "dynamicBindingPathList": [ 22 | {"key": "buttonColor"}, 23 | {"key": "borderRadius"} 24 | ], 25 | "text": "Close", 26 | "isDisabled": false, 27 | "key": "g334bm4qz0", 28 | "isDeprecated": false, 29 | "rightColumn": 47.865546218487395, 30 | "isDefaultClickDisabled": true, 31 | "widgetId": "8lrr844xpc", 32 | "buttonStyle": "PRIMARY", 33 | "minWidth": 120, 34 | "isVisible": true, 35 | "recaptchaType": "V3", 36 | "version": 1, 37 | "parentId": "nfu8zlo8hn", 38 | "tags": ["Buttons"], 39 | "renderMode": "CANVAS", 40 | "isLoading": false, 41 | "mobileTopRow": 18, 42 | "responsiveBehavior": "hug", 43 | "disabledWhenInvalid": false, 44 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 45 | "mobileLeftColumn": 31, 46 | "buttonVariant": "SECONDARY", 47 | "placement": "CENTER", 48 | "alignment": "end" 49 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Button12.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button12", 6 | "onClick": "{{closeModal('Modal3')}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 19.437500000000004, 15 | "bottomRow": 23.437500000000004, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 47, 19 | "animateLoading": true, 20 | "leftColumn": 29.56053811659193, 21 | "dynamicBindingPathList": [ 22 | {"key": "buttonColor"}, 23 | {"key": "borderRadius"} 24 | ], 25 | "text": "Close", 26 | "isDisabled": false, 27 | "key": "i8xfpc0evu", 28 | "isDeprecated": false, 29 | "rightColumn": 46.780269058295964, 30 | "isDefaultClickDisabled": true, 31 | "widgetId": "0tzlkofnmg", 32 | "buttonStyle": "PRIMARY", 33 | "minWidth": 120, 34 | "isVisible": true, 35 | "recaptchaType": "V3", 36 | "version": 1, 37 | "parentId": "qxdou9f9qw", 38 | "tags": ["Buttons"], 39 | "renderMode": "CANVAS", 40 | "isLoading": false, 41 | "mobileTopRow": 18, 42 | "responsiveBehavior": "hug", 43 | "disabledWhenInvalid": false, 44 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 45 | "mobileLeftColumn": 31, 46 | "buttonVariant": "SECONDARY", 47 | "placement": "CENTER", 48 | "alignment": "end" 49 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Button11.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 37, 5 | "widgetName": "Button11", 6 | "onClick": "{{showModal('Modal3');}}", 7 | "buttonColor": "#ef4444", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 33.2, 15 | "bottomRow": 37.2, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 7.4375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 47.865546218487395, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "text": "Delete", 26 | "isDisabled": false, 27 | "key": "i8xfpc0evu", 28 | "isDeprecated": false, 29 | "rightColumn": 64, 30 | "isDefaultClickDisabled": true, 31 | "iconName": "delete", 32 | "widgetId": "ok3us2l8nx", 33 | "minWidth": 120, 34 | "isVisible": true, 35 | "recaptchaType": "V3", 36 | "version": 1, 37 | "parentId": "nfu8zlo8hn", 38 | "tags": ["Buttons"], 39 | "renderMode": "CANVAS", 40 | "isLoading": false, 41 | "mobileTopRow": 33, 42 | "responsiveBehavior": "hug", 43 | "disabledWhenInvalid": false, 44 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 45 | "mobileLeftColumn": 0, 46 | "buttonVariant": "SECONDARY", 47 | "iconAlign": "left", 48 | "placement": "CENTER", 49 | "alignment": "end" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/Accepted_Terms.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 36, 3 | "widgetName": "Accepted_Terms", 4 | "displayName": "Checkbox", 5 | "iconSVG": "/static/media/icon.7b004ee098ca948e952234e7baec6d11.svg", 6 | "searchTags": ["boolean"], 7 | "topRow": 33.2, 8 | "bottomRow": 37.2, 9 | "parentRowSpace": 10, 10 | "type": "CHECKBOX_WIDGET", 11 | "alignWidget": "LEFT", 12 | "hideCard": false, 13 | "mobileRightColumn": 64, 14 | "animateLoading": true, 15 | "parentColumnSpace": 6.96875, 16 | "dynamicTriggerPathList": [], 17 | "leftColumn": 0, 18 | "dynamicBindingPathList": [ 19 | {"key": "accentColor"}, 20 | {"key": "borderRadius"} 21 | ], 22 | "labelPosition": "Right", 23 | "isDisabled": false, 24 | "key": "qvkgr7s6no", 25 | "isRequired": false, 26 | "isDeprecated": false, 27 | "rightColumn": 64, 28 | "dynamicHeight": "AUTO_HEIGHT", 29 | "widgetId": "jm7wycnndg", 30 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "minWidth": 450, 32 | "isVisible": true, 33 | "label": "I would like to get free news, updates, newsletters, features and innovative business usecases.", 34 | "version": 1, 35 | "parentId": "frd0zdq61p", 36 | "tags": ["Toggles"], 37 | "renderMode": "CANVAS", 38 | "isLoading": false, 39 | "mobileTopRow": 32, 40 | "responsiveBehavior": "fill", 41 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 42 | "mobileLeftColumn": 0, 43 | "defaultCheckedState": true, 44 | "maxDynamicHeight": 9000, 45 | "alignment": "start", 46 | "minDynamicHeight": 4 47 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Button3.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 4, 5 | "widgetName": "Button3", 6 | "onClick": "{{showModal('Contact_Us');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 0, 15 | "bottomRow": 4, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 26.234375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 35.83374083129584, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Support", 29 | "isDisabled": false, 30 | "key": "lv5p08demk", 31 | "isDeprecated": false, 32 | "rightColumn": 45.22249388753056, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "oahsvt0jen", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "0", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 0, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Sponsor_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 5, 5 | "widgetName": "Sponsor_button", 6 | "onClick": "{{showAlert(\"\", '')}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 0, 15 | "bottomRow": 4, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 26.234375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 26.444987775061122, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Sponsor", 29 | "isDisabled": false, 30 | "key": "lv5p08demk", 31 | "isDeprecated": false, 32 | "rightColumn": 35.83374083129584, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "8ihgqex0v6", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "0", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 1, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/Button14.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button14", 6 | "onClick": "{{closeModal('Contact_Us');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 38.400000000000006, 15 | "bottomRow": 42.400000000000006, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 47, 19 | "animateLoading": true, 20 | "dynamicTriggerPathList": [{"key": "onClick"}], 21 | "leftColumn": 41.674418604651166, 22 | "dynamicBindingPathList": [ 23 | {"key": "buttonColor"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "text": "Close", 27 | "isDisabled": false, 28 | "key": "w9jehe0bra", 29 | "isDeprecated": false, 30 | "rightColumn": 52.83720930232558, 31 | "isDefaultClickDisabled": true, 32 | "widgetId": "9qdozmfz6s", 33 | "buttonStyle": "PRIMARY", 34 | "minWidth": 120, 35 | "isVisible": true, 36 | "recaptchaType": "V3", 37 | "version": 1, 38 | "parentId": "frd0zdq61p", 39 | "tags": ["Buttons"], 40 | "renderMode": "CANVAS", 41 | "isLoading": false, 42 | "mobileTopRow": 18, 43 | "responsiveBehavior": "hug", 44 | "disabledWhenInvalid": false, 45 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 46 | "mobileLeftColumn": 31, 47 | "buttonVariant": "SECONDARY", 48 | "placement": "CENTER", 49 | "alignment": "end" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container3/AddModel.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 8, 5 | "widgetName": "AddModel", 6 | "onClick": "{{showModal('Add_Model');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 12.998437500000001, 15 | "bottomRow": 16.9984375, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 24.6875, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Add New Model", 29 | "isDisabled": false, 30 | "key": "i8xfpc0evu", 31 | "isDeprecated": false, 32 | "rightColumn": 10.525, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "m9x7q1q3zw", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "767uxsd0qa", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 4, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/CloseAddNewModel.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "CloseAddNewModel", 6 | "onClick": "{{closeModal('Add_Model');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 93.07187500000002, 15 | "bottomRow": 97.07187500000003, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 47, 19 | "animateLoading": true, 20 | "dynamicTriggerPathList": [{"key": "onClick"}], 21 | "leftColumn": 34.79847908745246, 22 | "dynamicBindingPathList": [ 23 | {"key": "buttonColor"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "text": "Close", 27 | "isDisabled": false, 28 | "key": "w9jehe0bra", 29 | "isDeprecated": false, 30 | "rightColumn": 49.39923954372623, 31 | "isDefaultClickDisabled": true, 32 | "widgetId": "vlnw6nqtmv", 33 | "buttonStyle": "PRIMARY", 34 | "minWidth": 120, 35 | "isVisible": true, 36 | "recaptchaType": "V3", 37 | "version": 1, 38 | "parentId": "frh7tek3vn", 39 | "tags": ["Buttons"], 40 | "renderMode": "CANVAS", 41 | "isLoading": false, 42 | "mobileTopRow": 18, 43 | "responsiveBehavior": "hug", 44 | "disabledWhenInvalid": false, 45 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 46 | "mobileLeftColumn": 31, 47 | "buttonVariant": "SECONDARY", 48 | "placement": "CENTER", 49 | "alignment": "end" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Github_Button.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 5, 5 | "widgetName": "Github_Button", 6 | "onClick": "{{navigateTo('https://github.com/kno2gether/LitellmProxyUI', {}, 'NEW_WINDOW');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 0, 15 | "bottomRow": 4, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 26.234375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 54.61124694376528, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Github", 29 | "isDisabled": false, 30 | "key": "lv5p08demk", 31 | "isDeprecated": false, 32 | "rightColumn": 64, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "c1nqffcnq7", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "0", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 1, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Button13.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button13", 6 | "onClick": "{{DeleteLLM.run().then(() => {\n showAlert('Model Deleted Successfully', 'info');\n}).catch(() => {\n showAlert('Oops! Something went wrong !', 'error');\n});}}", 7 | "buttonColor": "#ef4444", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 19.437500000000004, 15 | "bottomRow": 23.437500000000004, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 63, 19 | "animateLoading": true, 20 | "dynamicTriggerPathList": [{"key": "onClick"}], 21 | "leftColumn": 46.780269058295964, 22 | "dynamicBindingPathList": [{"key": "borderRadius"}], 23 | "text": "Delete", 24 | "isDisabled": false, 25 | "key": "i8xfpc0evu", 26 | "isDeprecated": false, 27 | "rightColumn": 64, 28 | "isDefaultClickDisabled": true, 29 | "widgetId": "z5zrsxonz5", 30 | "buttonStyle": "PRIMARY_BUTTON", 31 | "minWidth": 120, 32 | "isVisible": true, 33 | "recaptchaType": "V3", 34 | "version": 1, 35 | "parentId": "qxdou9f9qw", 36 | "tags": ["Buttons"], 37 | "renderMode": "CANVAS", 38 | "isLoading": false, 39 | "mobileTopRow": 18, 40 | "responsiveBehavior": "hug", 41 | "disabledWhenInvalid": false, 42 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 43 | "mobileLeftColumn": 47, 44 | "buttonVariant": "PRIMARY", 45 | "placement": "CENTER", 46 | "alignment": "end" 47 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Litellm_docs_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 4, 5 | "widgetName": "Litellm_docs_button", 6 | "onClick": "{{navigateTo('https://docs.litellm.ai/docs/', {}, 'NEW_WINDOW');}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 0, 15 | "bottomRow": 4, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 26.234375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 45.22249388753056, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Docs", 29 | "isDisabled": false, 30 | "key": "lv5p08demk", 31 | "isDeprecated": false, 32 | "rightColumn": 54.61124694376528, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "7g9y8qwdei", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "0", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 0, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Statbox1/Text25.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 4, 3 | "widgetName": "Text25", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "type": "TEXT_WIDGET", 14 | "hideCard": false, 15 | "mobileRightColumn": 65, 16 | "animateLoading": true, 17 | "overflow": "NONE", 18 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "truncateButtonColor"}, 23 | {"key": "fontFamily"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "shouldTruncate": false, 27 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 28 | "text": "This UI is Designed By", 29 | "key": "6lyqdeglii", 30 | "isDeprecated": false, 31 | "rightColumn": 64, 32 | "textAlign": "CENTER", 33 | "dynamicHeight": "AUTO_HEIGHT", 34 | "widgetId": "bnoj8z9aeq", 35 | "minWidth": 450, 36 | "isVisible": true, 37 | "fontStyle": "BOLD", 38 | "textColor": "#999999", 39 | "version": 1, 40 | "parentId": "ozf3shnk8y", 41 | "tags": [ 42 | "Suggested", 43 | "Content" 44 | ], 45 | "renderMode": "CANVAS", 46 | "isLoading": false, 47 | "mobileTopRow": 0, 48 | "responsiveBehavior": "fill", 49 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 50 | "mobileLeftColumn": 1, 51 | "maxDynamicHeight": 9000, 52 | "fontSize": "1.25rem", 53 | "alignment": "start", 54 | "minDynamicHeight": 4 55 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/Text10.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Text10", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "type": "TEXT_WIDGET", 14 | "hideCard": false, 15 | "mobileRightColumn": 65, 16 | "animateLoading": true, 17 | "overflow": "NONE", 18 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "truncateButtonColor"}, 23 | {"key": "fontFamily"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "shouldTruncate": false, 27 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 28 | "text": "Question/FeedBack", 29 | "key": "steianxyzb", 30 | "isDeprecated": false, 31 | "rightColumn": 60.27906976744186, 32 | "textAlign": "LEFT", 33 | "dynamicHeight": "AUTO_HEIGHT", 34 | "widgetId": "4u0se7fw0g", 35 | "minWidth": 450, 36 | "isVisible": true, 37 | "fontStyle": "BOLD", 38 | "textColor": "#231F20", 39 | "version": 1, 40 | "parentId": "frd0zdq61p", 41 | "tags": [ 42 | "Suggested", 43 | "Content" 44 | ], 45 | "renderMode": "CANVAS", 46 | "isLoading": false, 47 | "mobileTopRow": 1, 48 | "responsiveBehavior": "fill", 49 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 50 | "mobileLeftColumn": 1, 51 | "maxDynamicHeight": 9000, 52 | "fontSize": "1.25rem", 53 | "alignment": "start", 54 | "minDynamicHeight": 4 55 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Text9.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Text9", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "type": "TEXT_WIDGET", 14 | "hideCard": false, 15 | "mobileRightColumn": 65, 16 | "animateLoading": true, 17 | "overflow": "NONE", 18 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "truncateButtonColor"}, 23 | {"key": "fontFamily"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "shouldTruncate": false, 27 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 28 | "text": "Are You Sure To Delete?", 29 | "key": "8i6cpbbjrk", 30 | "isDeprecated": false, 31 | "rightColumn": 58.26008968609865, 32 | "textAlign": "LEFT", 33 | "dynamicHeight": "AUTO_HEIGHT", 34 | "widgetId": "jfjpasacsc", 35 | "minWidth": 450, 36 | "isVisible": true, 37 | "fontStyle": "BOLD", 38 | "textColor": "#231F20", 39 | "version": 1, 40 | "parentId": "qxdou9f9qw", 41 | "tags": [ 42 | "Suggested", 43 | "Content" 44 | ], 45 | "renderMode": "CANVAS", 46 | "isLoading": false, 47 | "mobileTopRow": 1, 48 | "responsiveBehavior": "fill", 49 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 50 | "mobileLeftColumn": 1, 51 | "maxDynamicHeight": 9000, 52 | "fontSize": "1.25rem", 53 | "alignment": "start", 54 | "minDynamicHeight": 4 55 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Statbox1/Button19.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button19", 6 | "onClick": "{{navigateTo('https://www.youtube.com/channel/UCxgkN3luQgLQOd_L7tbOdhQ', {}, 'NEW_WINDOW');}}", 7 | "buttonColor": "#ef4444", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 18.4, 15 | "bottomRow": 22.4, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 25.84375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 23.436881188118814, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "text": "Subscribe To Our Youtube", 26 | "isDisabled": false, 27 | "key": "ci7n0u29wo", 28 | "isDeprecated": false, 29 | "rightColumn": 40.56311881188118, 30 | "isDefaultClickDisabled": true, 31 | "iconName": "video", 32 | "widgetId": "5f8una9ny5", 33 | "minWidth": 120, 34 | "isVisible": true, 35 | "recaptchaType": "V3", 36 | "version": 1, 37 | "parentId": "ozf3shnk8y", 38 | "tags": ["Buttons"], 39 | "renderMode": "CANVAS", 40 | "isLoading": false, 41 | "mobileTopRow": 18, 42 | "responsiveBehavior": "hug", 43 | "disabledWhenInvalid": false, 44 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 45 | "mobileLeftColumn": 0, 46 | "buttonVariant": "PRIMARY", 47 | "iconAlign": "left", 48 | "placement": "CENTER", 49 | "alignment": "center" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_model_modal_title.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Add_model_modal_title", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "type": "TEXT_WIDGET", 14 | "hideCard": false, 15 | "mobileRightColumn": 65, 16 | "animateLoading": true, 17 | "overflow": "NONE", 18 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "truncateButtonColor"}, 23 | {"key": "fontFamily"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "shouldTruncate": false, 27 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 28 | "text": "Model Details", 29 | "key": "steianxyzb", 30 | "isDeprecated": false, 31 | "rightColumn": 59.133079847908746, 32 | "textAlign": "LEFT", 33 | "dynamicHeight": "AUTO_HEIGHT", 34 | "widgetId": "n90v75mfhl", 35 | "minWidth": 450, 36 | "isVisible": true, 37 | "fontStyle": "BOLD", 38 | "textColor": "#231F20", 39 | "version": 1, 40 | "parentId": "frh7tek3vn", 41 | "tags": [ 42 | "Suggested", 43 | "Content" 44 | ], 45 | "renderMode": "CANVAS", 46 | "isLoading": false, 47 | "mobileTopRow": 1, 48 | "responsiveBehavior": "fill", 49 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 50 | "mobileLeftColumn": 1, 51 | "maxDynamicHeight": 9000, 52 | "fontSize": "1.25rem", 53 | "alignment": "start", 54 | "minDynamicHeight": 4 55 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container3/Button18.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 17, 5 | "widgetName": "Button18", 6 | "onClick": "{{GetListOfLLMs.run().then(() => {\n showAlert('Refreshed Successfully.', 'info');\n});\nFetchModel_Config.run();}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 12.998437500000001, 15 | "bottomRow": 16.9984375, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 25.84375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 10.525, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Refresh", 29 | "isDisabled": false, 30 | "key": "w9jehe0bra", 31 | "isDeprecated": false, 32 | "rightColumn": 20.125, 33 | "isDefaultClickDisabled": true, 34 | "widgetId": "0k21c33b5d", 35 | "minWidth": 120, 36 | "isVisible": true, 37 | "recaptchaType": "V3", 38 | "version": 1, 39 | "parentId": "767uxsd0qa", 40 | "tags": ["Buttons"], 41 | "renderMode": "CANVAS", 42 | "isLoading": false, 43 | "mobileTopRow": 13, 44 | "responsiveBehavior": "hug", 45 | "disabledWhenInvalid": false, 46 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 47 | "mobileLeftColumn": 0, 48 | "buttonVariant": "PRIMARY", 49 | "placement": "CENTER", 50 | "alignment": "start" 51 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Info.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 32, 3 | "widgetName": "Info", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 28, 12 | "bottomRow": 32, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "Roboto", 20 | "parentColumnSpace": 7.4375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "borderRadius"} 26 | ], 27 | "shouldTruncate": false, 28 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 29 | "text": "To Change any value, please update the values and press Modify Button", 30 | "key": "8i6cpbbjrk", 31 | "isDeprecated": false, 32 | "rightColumn": 64, 33 | "textAlign": "LEFT", 34 | "dynamicHeight": "AUTO_HEIGHT", 35 | "widgetId": "tunwozlr1c", 36 | "minWidth": 450, 37 | "isVisible": true, 38 | "fontStyle": "BOLD", 39 | "textColor": "#ef4444", 40 | "version": 1, 41 | "parentId": "nfu8zlo8hn", 42 | "tags": [ 43 | "Suggested", 44 | "Content" 45 | ], 46 | "renderMode": "CANVAS", 47 | "isLoading": false, 48 | "mobileTopRow": 28, 49 | "responsiveBehavior": "fill", 50 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 51 | "mobileLeftColumn": 0, 52 | "maxDynamicHeight": 9000, 53 | "fontSize": "0.875rem", 54 | "alignment": "start", 55 | "minDynamicHeight": 4 56 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container1/Text3.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 10, 3 | "widgetName": "Text3", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 5.9984375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "System Default", 20 | "parentColumnSpace": 26.234375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "borderRadius"} 26 | ], 27 | "shouldTruncate": false, 28 | "borderWidth": "10", 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Provide LiteLLM Proxy Base URL", 31 | "key": "no07ro3fc1", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "CENTER", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "xxvlmfec62", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "x1at6z2v95", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 6, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1.25rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text8.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 6, 3 | "widgetName": "Text8", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Model Name:", 31 | "key": "xlhrsfms3t", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "ge8y89vq35", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "mncj4tq1fw", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Text5.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Text5", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "type": "TEXT_WIDGET", 14 | "hideCard": false, 15 | "mobileRightColumn": 65, 16 | "animateLoading": true, 17 | "overflow": "NONE", 18 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "truncateButtonColor"}, 23 | {"key": "fontFamily"}, 24 | {"key": "borderRadius"}, 25 | {"key": "text"} 26 | ], 27 | "shouldTruncate": false, 28 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 29 | "text": "{{ModelList.selectedOptionLabel}} Config", 30 | "key": "xlhrsfms3t", 31 | "isDeprecated": false, 32 | "rightColumn": 58.621848739495796, 33 | "textAlign": "LEFT", 34 | "dynamicHeight": "AUTO_HEIGHT", 35 | "widgetId": "d9bf5af1ie", 36 | "minWidth": 450, 37 | "isVisible": true, 38 | "fontStyle": "BOLD", 39 | "textColor": "#231F20", 40 | "version": 1, 41 | "parentId": "nfu8zlo8hn", 42 | "tags": [ 43 | "Suggested", 44 | "Content" 45 | ], 46 | "renderMode": "CANVAS", 47 | "isLoading": false, 48 | "mobileTopRow": 1, 49 | "responsiveBehavior": "fill", 50 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 51 | "mobileLeftColumn": 1, 52 | "maxDynamicHeight": 9000, 53 | "fontSize": "1.25rem", 54 | "alignment": "start", 55 | "minDynamicHeight": 4 56 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Container4/Text20.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 3, 3 | "widgetName": "Text20", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Model Id", 31 | "key": "6lyqdeglii", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "qvmhnq5f20", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "buab35d3hy", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": -1, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container5/Text24.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 1, 3 | "widgetName": "Text24", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 25.84375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Manage Keys", 31 | "key": "6lyqdeglii", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "CENTER", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "1maebqatps", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "xjxenwf6ar", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": -3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1.25rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Text1.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Text1", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4.3984375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "Poppins", 20 | "parentColumnSpace": 26.234375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "borderRadius"}, 26 | {"key": "textColor"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Litellm Proxy UI", 31 | "key": "no07ro3fc1", 32 | "isDeprecated": false, 33 | "rightColumn": 26.444987775061122, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "9kd540bnnk", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "{{appsmith.theme.colors.primaryColor}}", 41 | "version": 1, 42 | "parentId": "0", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container3/Text11.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 2, 3 | "widgetName": "Text11", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 25.953125, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Manage LiteLLM Models", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "CENTER", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "axw2iteu4o", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "767uxsd0qa", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": -2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1.25rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Container4/Text22.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 6, 3 | "widgetName": "Text22", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 5.8375, 12 | "bottomRow": 9.8375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "TargetModelName", 31 | "key": "6lyqdeglii", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "zkvskeab0y", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "buab35d3hy", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container5/TBB.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "TBB", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 5.2, 12 | "bottomRow": 9.2, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 25.84375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "This section is still being built..", 31 | "key": "6lyqdeglii", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "CENTER", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "7cwaf1atii", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "xjxenwf6ar", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 1, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text8Copy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 6, 3 | "widgetName": "Text8Copy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 5.2, 12 | "bottomRow": 9.200000000000001, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Target API Base:", 31 | "key": "xlhrsfms3t", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "jftl4h10e6", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "mncj4tq1fw", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_RPM.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_RPM", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 38.7875, 12 | "bottomRow": 42.7875, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "RPM :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "mta26pkkgt", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Text16.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 14, 3 | "widgetName": "Text16", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 12.296875, 12 | "bottomRow": 16.296875, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.9375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "LiteLLM Parameters ", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "ci94xx45t2", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 10, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Button17.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "Button17", 6 | "onClick": "{{AddNewLLM.run().then(() => {\n showAlert('New Model Added Successfullt', 'info');\n closeModal('Add_Model');\n}).catch(() => {\n showAlert('Oops! Something has broken!', 'error');\n});}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 93.07187500000002, 15 | "bottomRow": 97.07187500000003, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 63, 19 | "animateLoading": true, 20 | "dynamicTriggerPathList": [{"key": "onClick"}], 21 | "leftColumn": 49.39923954372623, 22 | "dynamicBindingPathList": [ 23 | {"key": "buttonColor"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "text": "Confirm", 27 | "isDisabled": false, 28 | "key": "w9jehe0bra", 29 | "isDeprecated": false, 30 | "rightColumn": 64, 31 | "isDefaultClickDisabled": true, 32 | "widgetId": "o4oxp952vt", 33 | "buttonStyle": "PRIMARY_BUTTON", 34 | "minWidth": 120, 35 | "isVisible": true, 36 | "recaptchaType": "V3", 37 | "version": 1, 38 | "parentId": "frh7tek3vn", 39 | "tags": ["Buttons"], 40 | "renderMode": "CANVAS", 41 | "isLoading": false, 42 | "mobileTopRow": 18, 43 | "responsiveBehavior": "hug", 44 | "disabledWhenInvalid": false, 45 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 46 | "mobileLeftColumn": 47, 47 | "buttonVariant": "PRIMARY", 48 | "placement": "CENTER", 49 | "alignment": "end" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text8CopyCopyCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 6, 3 | "widgetName": "Text8CopyCopyCopy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 15.600000000000001, 12 | "bottomRow": 19.6, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "TPM", 31 | "key": "xlhrsfms3t", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "qaje1iufqo", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "mncj4tq1fw", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text8CopyCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 6, 3 | "widgetName": "Text8CopyCopy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 10.400000000000002, 12 | "bottomRow": 14.400000000000002, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "RPM", 31 | "key": "xlhrsfms3t", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "he52q9faon", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "mncj4tq1fw", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 2, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Group_Name.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_Group_Name", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Model Group Name * :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "5s3ordp281", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Text17.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 58, 3 | "widgetName": "Text17", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 58.18125000000001, 12 | "bottomRow": 62.18125000000001, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.9375, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Model Parameters", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 64, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "tqj3njwvk4", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 54, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "1.25rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/OutputcostCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "OutputcostCopy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 77.57500000000002, 12 | "bottomRow": 81.57500000000002, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Max Tokens :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "j4jgn8vk33", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Target_Name.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_Target_Name", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 17.496875, 12 | "bottomRow": 21.496875, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Target Model Name * :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "2jiz9ox80q", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Outputcost.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Outputcost", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 70.47812500000002, 12 | "bottomRow": 74.47812500000002, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Output Cost Per 1M Token:", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "w2a88wlk8s", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/inputcost.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "inputcost", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 63.381250000000016, 12 | "bottomRow": 67.38125000000002, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Input Cost Per 1M Token:", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "4kbqk13h81", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Target_NameCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_Target_NameCopy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 24.59375, 12 | "bottomRow": 28.59375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Target API Base * :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "yskza4gv4f", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Target_NameCopyCopy1.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_Target_NameCopyCopy1", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 45.884375000000006, 12 | "bottomRow": 49.884375000000006, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "TPM :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "5tovwyxtl8", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Target_NameCopyCopy.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 7, 3 | "widgetName": "Add_Model_Target_NameCopyCopy", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 31.690625, 12 | "bottomRow": 35.690625000000004, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.96875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 0, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "shouldTruncate": false, 29 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 30 | "text": "Target API Key * :", 31 | "key": "steianxyzb", 32 | "isDeprecated": false, 33 | "rightColumn": 32, 34 | "textAlign": "LEFT", 35 | "dynamicHeight": "AUTO_HEIGHT", 36 | "widgetId": "dh0ej9q62l", 37 | "minWidth": 450, 38 | "isVisible": true, 39 | "fontStyle": "BOLD", 40 | "textColor": "#231F20", 41 | "version": 1, 42 | "parentId": "f6ija1f84q", 43 | "tags": [ 44 | "Suggested", 45 | "Content" 46 | ], 47 | "renderMode": "CANVAS", 48 | "isLoading": false, 49 | "mobileTopRow": 3, 50 | "responsiveBehavior": "fill", 51 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 52 | "mobileLeftColumn": 0, 53 | "maxDynamicHeight": 9000, 54 | "fontSize": "0.875rem", 55 | "alignment": "start", 56 | "minDynamicHeight": 4 57 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/send_Support_request.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 22, 5 | "widgetName": "send_Support_request", 6 | "onClick": "{{Support_Request.run().then(() => {\n showAlert('Your Request/Feedback is now sent. You Should recieve an email confirming our receipt.', 'success');\n}).catch(() => {\n showAlert('Oops! Something Went Wrong !', 'error');\n});}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 38.400000000000006, 15 | "bottomRow": 42.400000000000006, 16 | "type": "BUTTON_WIDGET", 17 | "hideCard": false, 18 | "mobileRightColumn": 63, 19 | "animateLoading": true, 20 | "dynamicTriggerPathList": [{"key": "onClick"}], 21 | "leftColumn": 52.83720930232558, 22 | "dynamicBindingPathList": [ 23 | {"key": "buttonColor"}, 24 | {"key": "borderRadius"} 25 | ], 26 | "text": "Send", 27 | "isDisabled": false, 28 | "key": "w9jehe0bra", 29 | "isDeprecated": false, 30 | "rightColumn": 64, 31 | "isDefaultClickDisabled": true, 32 | "widgetId": "5gj5ijqrg3", 33 | "buttonStyle": "PRIMARY_BUTTON", 34 | "minWidth": 120, 35 | "isVisible": true, 36 | "recaptchaType": "V3", 37 | "version": 1, 38 | "parentId": "frd0zdq61p", 39 | "tags": ["Buttons"], 40 | "renderMode": "CANVAS", 41 | "isLoading": false, 42 | "mobileTopRow": 18, 43 | "responsiveBehavior": "hug", 44 | "disabledWhenInvalid": false, 45 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 46 | "mobileLeftColumn": 47, 47 | "buttonVariant": "PRIMARY", 48 | "placement": "CENTER", 49 | "alignment": "end" 50 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container1/Button5.json: -------------------------------------------------------------------------------- 1 | { 2 | "resetFormOnClick": false, 3 | "boxShadow": "none", 4 | "mobileBottomRow": 17, 5 | "widgetName": "Button5", 6 | "onClick": "{{ConnectLiteLLMBaseURL.run().then(() => {\n showAlert('Connected Successfully', 'info');\n GetListOfLLMs.run();\n}).catch(() => {\n showAlert('Opps! Please Recheck URL/User-Key Provided.', 'error');\n});}}", 7 | "buttonColor": "{{appsmith.theme.colors.primaryColor}}", 8 | "displayName": "Button", 9 | "iconSVG": "/static/media/icon.05d209fafeb13a8569e3b4e97069d9ee.svg", 10 | "searchTags": [ 11 | "click", 12 | "submit" 13 | ], 14 | "topRow": 14.998437500000001, 15 | "bottomRow": 18.9984375, 16 | "parentRowSpace": 10, 17 | "type": "BUTTON_WIDGET", 18 | "hideCard": false, 19 | "mobileRightColumn": 6.453, 20 | "animateLoading": true, 21 | "parentColumnSpace": 26.234375, 22 | "dynamicTriggerPathList": [{"key": "onClick"}], 23 | "leftColumn": 27.2, 24 | "dynamicBindingPathList": [ 25 | {"key": "buttonColor"}, 26 | {"key": "borderRadius"} 27 | ], 28 | "text": "Connect", 29 | "isDisabled": false, 30 | "key": "lv5p08demk", 31 | "isDeprecated": false, 32 | "rightColumn": 36.8, 33 | "isDefaultClickDisabled": true, 34 | "iconName": "arrow-right", 35 | "widgetId": "jmv1n1wsqt", 36 | "minWidth": 120, 37 | "isVisible": true, 38 | "recaptchaType": "V3", 39 | "version": 1, 40 | "parentId": "x1at6z2v95", 41 | "tags": ["Buttons"], 42 | "renderMode": "CANVAS", 43 | "isLoading": false, 44 | "mobileTopRow": 13, 45 | "responsiveBehavior": "hug", 46 | "disabledWhenInvalid": false, 47 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 48 | "mobileLeftColumn": 0, 49 | "buttonVariant": "PRIMARY", 50 | "iconAlign": "left", 51 | "placement": "CENTER", 52 | "alignment": "center" 53 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text12.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 5, 3 | "widgetName": "Text12", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.15625, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": "{{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.litellm_params.model)[0]}}\n", 32 | "key": "steianxyzb", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "gnhk2cbgfh", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "mncj4tq1fw", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": 1, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text13.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 9, 3 | "widgetName": "Text13", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 5.2, 12 | "bottomRow": 9.2, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.15625, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": "{{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.litellm_params.api_base)[0]}}\n\n", 32 | "key": "steianxyzb", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "51ftab4q6g", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "mncj4tq1fw", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": 5, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Container4/Model_id_Input.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 3, 3 | "widgetName": "Model_id_Input", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 0, 12 | "bottomRow": 4.6375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": " {{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.model_info.id)[0]}}", 32 | "key": "6lyqdeglii", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "i9y8110hr7", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "buab35d3hy", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": -1, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Container4/Text23.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 10, 3 | "widgetName": "Text23", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 5.8375, 12 | "bottomRow": 9.8375, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 6.6875, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": "{{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.litellm_params.model)[0]}}\n\n", 32 | "key": "6lyqdeglii", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "b6551p2ijy", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "buab35d3hy", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": 6, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text15.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 18, 3 | "widgetName": "Text15", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 15.600000000000001, 12 | "bottomRow": 19.6, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.15625, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": "{{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.litellm_params.tpm)[0]}}\n", 32 | "key": "steianxyzb", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "o58kg85hs0", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "mncj4tq1fw", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": 14, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Text14.json: -------------------------------------------------------------------------------- 1 | { 2 | "mobileBottomRow": 14, 3 | "widgetName": "Text14", 4 | "displayName": "Text", 5 | "iconSVG": "/static/media/icon.a47d6d5dbbb718c4dc4b2eb4f218c1b7.svg", 6 | "searchTags": [ 7 | "typography", 8 | "paragraph", 9 | "label" 10 | ], 11 | "topRow": 10.400000000000002, 12 | "bottomRow": 14.400000000000002, 13 | "parentRowSpace": 10, 14 | "type": "TEXT_WIDGET", 15 | "hideCard": false, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "overflow": "NONE", 19 | "fontFamily": "{{appsmith.theme.fontFamily.appFont}}", 20 | "parentColumnSpace": 7.15625, 21 | "dynamicTriggerPathList": [], 22 | "leftColumn": 32, 23 | "dynamicBindingPathList": [ 24 | {"key": "truncateButtonColor"}, 25 | {"key": "fontFamily"}, 26 | {"key": "borderRadius"}, 27 | {"key": "text"} 28 | ], 29 | "shouldTruncate": false, 30 | "truncateButtonColor": "{{appsmith.theme.colors.primaryColor}}", 31 | "text": "{{FetchModel_Config.data.data.filter((item) => item.model_name === ModelList.selectedOptionValue ).map((obj) => obj.litellm_params.rpm)[0]}}\n", 32 | "key": "steianxyzb", 33 | "isDeprecated": false, 34 | "rightColumn": 64, 35 | "textAlign": "LEFT", 36 | "dynamicHeight": "AUTO_HEIGHT", 37 | "widgetId": "yy5gir9pwf", 38 | "minWidth": 450, 39 | "isVisible": true, 40 | "fontStyle": "BOLD", 41 | "textColor": "#231F20", 42 | "version": 1, 43 | "parentId": "mncj4tq1fw", 44 | "tags": [ 45 | "Suggested", 46 | "Content" 47 | ], 48 | "renderMode": "CANVAS", 49 | "isLoading": false, 50 | "mobileTopRow": 10, 51 | "responsiveBehavior": "fill", 52 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 53 | "mobileLeftColumn": 0, 54 | "maxDynamicHeight": 9000, 55 | "fontSize": "1rem", 56 | "alignment": "start", 57 | "minDynamicHeight": 4 58 | } -------------------------------------------------------------------------------- /pages/Home/queries/GetListOfLLMs/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "GetListOfLLMs", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "{{Input1.text}}/models", 25 | "headers": [ 26 | { 27 | "key": "Authorization", 28 | "value": "Bearer {{Input2.text}}" 29 | } 30 | ], 31 | "autoGeneratedHeaders": [], 32 | "encodeParamsToggle": true, 33 | "queryParameters": [], 34 | "body": "", 35 | "bodyFormData": [], 36 | "httpMethod": "GET", 37 | "selfReferencingDataPaths": [], 38 | "pluginSpecifiedTemplates": [ 39 | { 40 | "value": true 41 | } 42 | ], 43 | "formData": { 44 | "apiContentType": "none" 45 | } 46 | }, 47 | "executeOnLoad": true, 48 | "dynamicBindingPathList": [ 49 | { 50 | "key": "path" 51 | }, 52 | { 53 | "key": "headers[0].value" 54 | } 55 | ], 56 | "isValid": true, 57 | "invalids": [], 58 | "messages": [], 59 | "jsonPathKeys": [ 60 | "Input1.text", 61 | "Input2.text" 62 | ], 63 | "userSetOnLoad": false, 64 | "confirmBeforeExecute": false, 65 | "policies": [], 66 | "userPermissions": [], 67 | "createdAt": "2023-12-19T14:00:44Z" 68 | }, 69 | "id": "Home_GetListOfLLMs", 70 | "deleted": false, 71 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581a20cb2a9615a33217f73" 72 | } -------------------------------------------------------------------------------- /pages/Home/queries/FetchModel_Config/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "FetchModel_Config", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "{{Input1.text}}/model/info", 25 | "headers": [ 26 | { 27 | "key": "Authorization", 28 | "value": "Bearer {{Input2.text}}" 29 | } 30 | ], 31 | "autoGeneratedHeaders": [], 32 | "encodeParamsToggle": true, 33 | "queryParameters": [], 34 | "body": "", 35 | "bodyFormData": [], 36 | "httpMethod": "GET", 37 | "selfReferencingDataPaths": [], 38 | "pluginSpecifiedTemplates": [ 39 | { 40 | "value": true 41 | } 42 | ], 43 | "formData": { 44 | "apiContentType": "none" 45 | } 46 | }, 47 | "executeOnLoad": true, 48 | "dynamicBindingPathList": [ 49 | { 50 | "key": "path" 51 | }, 52 | { 53 | "key": "headers[0].value" 54 | } 55 | ], 56 | "isValid": true, 57 | "invalids": [], 58 | "messages": [], 59 | "jsonPathKeys": [ 60 | "Input1.text", 61 | "Input2.text" 62 | ], 63 | "userSetOnLoad": false, 64 | "confirmBeforeExecute": false, 65 | "policies": [], 66 | "userPermissions": [], 67 | "createdAt": "2023-12-19T11:29:26Z" 68 | }, 69 | "id": "Home_FetchModel_Config", 70 | "deleted": false, 71 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581a20cb2a9615a33217f72" 72 | } -------------------------------------------------------------------------------- /pages/Home/queries/ConnectLiteLLMBaseURL/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "ConnectLiteLLMBaseURL", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "{{Input1.text}}", 25 | "headers": [ 26 | { 27 | "key": "Authorization", 28 | "value": "Bearer {{Input2.text}}" 29 | } 30 | ], 31 | "autoGeneratedHeaders": [], 32 | "encodeParamsToggle": true, 33 | "queryParameters": [], 34 | "body": "", 35 | "bodyFormData": [], 36 | "httpMethod": "GET", 37 | "selfReferencingDataPaths": [], 38 | "pluginSpecifiedTemplates": [ 39 | { 40 | "value": true 41 | } 42 | ], 43 | "formData": { 44 | "apiContentType": "none" 45 | } 46 | }, 47 | "executeOnLoad": false, 48 | "dynamicBindingPathList": [ 49 | { 50 | "key": "path" 51 | }, 52 | { 53 | "key": "headers[0].value" 54 | } 55 | ], 56 | "isValid": true, 57 | "invalids": [], 58 | "messages": [], 59 | "jsonPathKeys": [ 60 | "Input1.text", 61 | "Input2.text" 62 | ], 63 | "userSetOnLoad": false, 64 | "confirmBeforeExecute": false, 65 | "policies": [], 66 | "userPermissions": [], 67 | "createdAt": "2023-12-19T11:13:28Z" 68 | }, 69 | "id": "Home_ConnectLiteLLMBaseURL", 70 | "deleted": false, 71 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581a20cb2a9615a33217f71" 72 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container1/Input1.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 7.1984375, 5 | "labelWidth": 5, 6 | "type": "INPUT_WIDGET_V2", 7 | "animateLoading": true, 8 | "resetOnSubmit": true, 9 | "leftColumn": 0, 10 | "dynamicBindingPathList": [ 11 | {"key": "accentColor"}, 12 | {"key": "borderRadius"} 13 | ], 14 | "labelStyle": "", 15 | "inputType": "TEXT", 16 | "placeholderText": "Enter LiteLLM Proxy URL Here", 17 | "isDisabled": false, 18 | "isRequired": false, 19 | "dynamicHeight": "FIXED", 20 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 21 | "showStepArrows": false, 22 | "isVisible": true, 23 | "version": 2, 24 | "tags": [ 25 | "Suggested", 26 | "Inputs" 27 | ], 28 | "isLoading": false, 29 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 30 | "alignment": "start", 31 | "mobileBottomRow": 16.6, 32 | "widgetName": "Input1", 33 | "displayName": "Input", 34 | "searchTags": [ 35 | "form", 36 | "text input", 37 | "number", 38 | "textarea" 39 | ], 40 | "bottomRow": 13.7984375, 41 | "parentRowSpace": 10, 42 | "autoFocus": false, 43 | "hideCard": false, 44 | "mobileRightColumn": 64, 45 | "parentColumnSpace": 26.234375, 46 | "dynamicTriggerPathList": [], 47 | "labelPosition": "Top", 48 | "key": "901o242n0c", 49 | "labelTextSize": "0.875rem", 50 | "isDeprecated": false, 51 | "rightColumn": 32, 52 | "widgetId": "h4e3hnb4bo", 53 | "minWidth": 450, 54 | "label": "Base URL*", 55 | "parentId": "x1at6z2v95", 56 | "labelAlignment": "left", 57 | "renderMode": "CANVAS", 58 | "mobileTopRow": 10, 59 | "responsiveBehavior": "fill", 60 | "mobileLeftColumn": 0, 61 | "maxDynamicHeight": 9000, 62 | "iconAlign": "left", 63 | "defaultText": "", 64 | "minDynamicHeight": 4 65 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/user_email.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 25.4, 5 | "labelWidth": 5, 6 | "type": "INPUT_WIDGET_V2", 7 | "animateLoading": true, 8 | "resetOnSubmit": true, 9 | "leftColumn": 0, 10 | "dynamicBindingPathList": [ 11 | {"key": "accentColor"}, 12 | {"key": "borderRadius"}, 13 | {"key": "validation"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "welcome@kno2gether.com", 18 | "isDisabled": false, 19 | "validation": "{{user_email.text.length > 0}}", 20 | "isRequired": true, 21 | "dynamicHeight": "FIXED", 22 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 23 | "showStepArrows": false, 24 | "isVisible": true, 25 | "version": 2, 26 | "tags": [ 27 | "Suggested", 28 | "Inputs" 29 | ], 30 | "isLoading": false, 31 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 32 | "alignment": "start", 33 | "mobileBottomRow": 27.6, 34 | "widgetName": "user_email", 35 | "displayName": "Input", 36 | "searchTags": [ 37 | "form", 38 | "text input", 39 | "number", 40 | "textarea" 41 | ], 42 | "bottomRow": 32, 43 | "parentRowSpace": 10, 44 | "autoFocus": false, 45 | "hideCard": false, 46 | "mobileRightColumn": 64, 47 | "parentColumnSpace": 6.96875, 48 | "dynamicTriggerPathList": [], 49 | "labelPosition": "Top", 50 | "key": "xgqhxxozks", 51 | "labelTextSize": "0.875rem", 52 | "isDeprecated": false, 53 | "rightColumn": 64, 54 | "widgetId": "pjd13yedd3", 55 | "minWidth": 450, 56 | "label": "Your Email", 57 | "parentId": "frd0zdq61p", 58 | "labelAlignment": "left", 59 | "renderMode": "CANVAS", 60 | "mobileTopRow": 21, 61 | "responsiveBehavior": "fill", 62 | "mobileLeftColumn": 0, 63 | "maxDynamicHeight": 9000, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container1/Input2.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 7.1984375, 5 | "tooltip": "", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "PASSWORD", 17 | "placeholderText": "Please enter your userKey here.", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 16.6, 33 | "widgetName": "Input2", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 13.7984375, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 25.953125, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "901o242n0c", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "7mosszhs7m", 54 | "minWidth": 450, 55 | "label": "User-Key (Optional)", 56 | "parentId": "x1at6z2v95", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 10, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "shouldAllowAutofill": true, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/TargetAPIBaseInput.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 24.59375, 5 | "tooltip": "This is the LLM Provider's Base URL (Ex - OpenAI Base URL).", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "http://127.0.0.1:11434", 18 | "isDisabled": false, 19 | "isRequired": true, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "TargetAPIBaseInput", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 30.490625, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "eqahdn7v5i", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "iconAlign": "left", 64 | "defaultText": "", 65 | "minDynamicHeight": 4 66 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/TargetModelNameInput.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 17.496875, 5 | "tooltip": "This is the model name which LiteLLM proxy will call to the LLM Provider.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "ollama/mistral", 18 | "isDisabled": false, 19 | "isRequired": true, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "TargetModelNameInput", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 23.39375, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "jy47cu0w27", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "iconAlign": "left", 64 | "defaultText": "", 65 | "minDynamicHeight": 4 66 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/ModelGroupValueInput.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 0, 5 | "tooltip": "This is Model Group Name which will be used during call to the LiteLLM Endpoint.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "mistral-7b-instruct", 18 | "isDisabled": false, 19 | "isRequired": true, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "ModelGroupValueInput", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 5.8968750000000005, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "cncviaqnnr", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "iconAlign": "left", 64 | "defaultText": "", 65 | "minDynamicHeight": 4 66 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_model_tpm_val.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 45.884375000000006, 5 | "tooltip": "Tokens Per Minute. You can control how many maximum Tokens you want this model to serve.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "1000", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "Add_model_tpm_val", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 51.78125000000001, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "rll7jk7y67", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "iconAlign": "left", 64 | "defaultText": "", 65 | "minDynamicHeight": 4 66 | } -------------------------------------------------------------------------------- /pages/Home/queries/Support_Request/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "Support_Request", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "https://kno2getherworkflow.ddns.net" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "/webhook/create_support_request", 25 | "headers": [], 26 | "autoGeneratedHeaders": [ 27 | { 28 | "key": "content-type", 29 | "value": "application/json" 30 | } 31 | ], 32 | "encodeParamsToggle": true, 33 | "queryParameters": [], 34 | "body": "{\n\t\"email\": \"{{user_email.text}}\",\n\t\"feedback\": \"{{Feedback_Input.text}}\",\n\t\"promotioncheck\": \"{{Accepted_Terms.isChecked}}\"\n}", 35 | "bodyFormData": [], 36 | "httpMethod": "POST", 37 | "selfReferencingDataPaths": [], 38 | "pluginSpecifiedTemplates": [ 39 | { 40 | "value": true 41 | } 42 | ], 43 | "formData": { 44 | "apiContentType": "none" 45 | } 46 | }, 47 | "executeOnLoad": false, 48 | "dynamicBindingPathList": [ 49 | { 50 | "key": "body" 51 | } 52 | ], 53 | "isValid": true, 54 | "invalids": [], 55 | "messages": [], 56 | "jsonPathKeys": [ 57 | "Accepted_Terms.isChecked", 58 | "Feedback_Input.text", 59 | "user_email.text" 60 | ], 61 | "userSetOnLoad": false, 62 | "confirmBeforeExecute": false, 63 | "policies": [], 64 | "userPermissions": [], 65 | "createdAt": "2023-12-19T16:43:10Z" 66 | }, 67 | "id": "Home_Support_Request", 68 | "deleted": false, 69 | "gitSyncId": "6581bfcab2a9615a33217f8a_6581c81eb2a9615a33217fa8" 70 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_RPM_Value.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 38.7875, 5 | "tooltip": "Request Per Minute. You can control how many maximum requests you want this model to serve.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "NUMBER", 17 | "placeholderText": "60", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "Add_Model_RPM_Value", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 44.684375, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "0ypiylmdv6", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "shouldAllowAutofill": false, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/outputcostvalue.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 70.47812500000002, 5 | "tooltip": "Output token cost. This is an optional field however required if you want to manage Budget and Spending through Proxy.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "1.8", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "outputcostvalue", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 76.37500000000001, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "41irzhxfs8", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "iconAlign": "left", 64 | "defaultText": "", 65 | "minDynamicHeight": 4 66 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/maxtokens.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 77.57500000000002, 5 | "tooltip": "Max Tokens helps you control api token response and context window for the specified model. Optional field.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "NUMBER", 17 | "placeholderText": "2800", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "maxtokens", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 83.47187500000001, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "3yc7wlffqg", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "shouldAllowAutofill": false, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/inputcostvalue.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 63.381250000000016, 5 | "tooltip": "Input token cost. This is an optional field however required if you want to manage Budget and Spending through Proxy.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "TEXT", 17 | "placeholderText": "0.60", 18 | "isDisabled": false, 19 | "isRequired": false, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "inputcostvalue", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 69.27812500000002, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "uihmud0tg8", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "shouldAllowAutofill": false, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/TargetAPIKeyInput.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 4 | "topRow": 31.690625, 5 | "tooltip": "API Key as created in the AI API Provider. Ex - OpenAI API Key. If running local models. Type \"Blank\" here.", 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 32, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"} 14 | ], 15 | "labelStyle": "", 16 | "inputType": "PASSWORD", 17 | "placeholderText": "sk-habaljshdak2435rkndjfab23", 18 | "isDisabled": false, 19 | "isRequired": true, 20 | "dynamicHeight": "FIXED", 21 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 22 | "showStepArrows": false, 23 | "isVisible": true, 24 | "version": 2, 25 | "tags": [ 26 | "Suggested", 27 | "Inputs" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 10.6, 33 | "widgetName": "TargetAPIKeyInput", 34 | "displayName": "Input", 35 | "searchTags": [ 36 | "form", 37 | "text input", 38 | "number", 39 | "textarea" 40 | ], 41 | "bottomRow": 37.5875, 42 | "parentRowSpace": 10, 43 | "autoFocus": false, 44 | "hideCard": false, 45 | "mobileRightColumn": 64, 46 | "parentColumnSpace": 6.96875, 47 | "dynamicTriggerPathList": [], 48 | "labelPosition": "Top", 49 | "key": "xgqhxxozks", 50 | "labelTextSize": "0.875rem", 51 | "isDeprecated": false, 52 | "rightColumn": 64, 53 | "widgetId": "lorahbx8x0", 54 | "minWidth": 450, 55 | "label": "", 56 | "parentId": "f6ija1f84q", 57 | "labelAlignment": "left", 58 | "renderMode": "CANVAS", 59 | "mobileTopRow": 4, 60 | "responsiveBehavior": "fill", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "shouldAllowAutofill": true, 64 | "iconAlign": "left", 65 | "defaultText": "", 66 | "minDynamicHeight": 4 67 | } -------------------------------------------------------------------------------- /pages/Home/queries/DeleteLLM/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "DeleteLLM", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "{{Input1.text}}/model/delete", 25 | "headers": [ 26 | { 27 | "key": "Authorization", 28 | "value": "Bearer {{Input2.text}}" 29 | } 30 | ], 31 | "autoGeneratedHeaders": [ 32 | { 33 | "key": "content-type", 34 | "value": "application/json" 35 | } 36 | ], 37 | "encodeParamsToggle": true, 38 | "queryParameters": [], 39 | "body": "{\n\t\"id\": \"{{Model_id_Input.text}}\"\n}", 40 | "bodyFormData": [], 41 | "httpMethod": "POST", 42 | "selfReferencingDataPaths": [], 43 | "pluginSpecifiedTemplates": [ 44 | { 45 | "value": true 46 | } 47 | ], 48 | "formData": { 49 | "apiContentType": "none" 50 | } 51 | }, 52 | "executeOnLoad": false, 53 | "dynamicBindingPathList": [ 54 | { 55 | "key": "path" 56 | }, 57 | { 58 | "key": "body" 59 | }, 60 | { 61 | "key": "headers[0].value" 62 | } 63 | ], 64 | "isValid": true, 65 | "invalids": [], 66 | "messages": [], 67 | "jsonPathKeys": [ 68 | "Input1.text", 69 | "Input2.text", 70 | "Model_id_Input.text" 71 | ], 72 | "userSetOnLoad": false, 73 | "confirmBeforeExecute": false, 74 | "policies": [], 75 | "userPermissions": [], 76 | "createdAt": "2023-12-19T15:34:24Z" 77 | }, 78 | "id": "Home_DeleteLLM", 79 | "deleted": false, 80 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581b800b2a9615a33217f82" 81 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](http://kno2gether.com/wp-content/uploads/2023/09/cropped-ideogram-4_clipdrop-background-removal_clipdrop-relight.png) 2 | 3 | This app is built using Appsmith by Kno2gether. This is a simple UI to manage LiteLLM Proxy configuration. This UI is designed to simplify and ease developer life to manage their AI API locally through LiteLLM through UI. 4 | More features are to be added, such as KEY MANAGEMENT, Budget Management. 5 | 6 | PR is Welcome. 7 | 8 | ** Installation Steps (Using Docker) 9 | 10 | * Step-1 11 | Install AppSmith community Edition (For Free). 12 | Create a folder(For eg. LLMProxyUI) 13 | Go inside LLMProxyUI 14 | ``` 15 | cd LLMProxyUI 16 | ``` 17 | create a docker-compose.yml file 18 | ``` 19 | version: "3" 20 | services: 21 | appsmith: 22 | image: index.docker.io/appsmith/appsmith-ce 23 | container_name: appsmith 24 | ports: 25 | - "8081:80" 26 | - "8443:443" 27 | volumes: 28 | - ./stacks:/appsmith-stacks 29 | restart: unless-stopped 30 | ``` 31 | This will ensure when docker will be run, your appsmit instance will be available in 8081 or 8443 (https) port. 32 | 33 | * Step-2 34 | Start Appsmith. 35 | ``` 36 | docker-compose up -d 37 | ``` 38 | * Step-3 39 | Clone this repository 40 | ``` 41 | git clone https://github.com/kno2gether/LiteLLMProxyUI.git 42 | ``` 43 | 44 | * Step-4 45 | Load AppSmith on your browser http://localhost:8081 46 | 47 | 48 | *Step-5 49 | Finish up the sign up process and then click on the App menu on Right Top using (...) then click Import and then Select ```LiteLLM Proxy UI by Kno2gether.json``` file from cloned repository. 50 | ![](https://github.com/kno2gether/LiteLLMProxyUI/blob/master/appsmith_import.png) 51 | 52 | *Step-6 53 | Now your App is ready. Just Click Deploy. 54 | 55 | *Step-7 56 | Provide LiteLLM Proxy URL and Optional UserKey and then you can use the UI to manade Models and routes of your LiteLLM Proxy using this simple UI. 57 | 58 | 59 | [For more detailed Tutorial check out the video in our youtube Channel. ](https://www.youtube.com/watch?v=-Wo025I-_I4) 60 | 61 | 62 | ![](https://raw.githubusercontent.com/appsmithorg/appsmith/release/static/images/integrations.png) 63 | 64 | • [Our Website](https://kno2gether.com) • [Tutorials](https://www.youtube.com/watch?v=-Wo025I-_I4) • [Youtube]([https://www.youtube.com/channel/UCxgkN3luQgLQOd_L7tbOdhQ]) 65 | 66 | -------------------------------------------------------------------------------- /pages/Home/widgets/Container3/ModelList.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "iconSVG": "/static/media/icon.a7b19dc8b31d68fcff57f1d2c0084a18.svg", 4 | "labelText": "Select Existing Model From Config", 5 | "topRow": 5.2, 6 | "labelWidth": 5, 7 | "type": "SELECT_WIDGET", 8 | "serverSideFiltering": false, 9 | "defaultOptionValue": "{{\n {\n label: Select1.options[0].label,\n value: Select1.options[0].value\n }\n }}", 10 | "animateLoading": true, 11 | "dynamicBindingPathList": [ 12 | {"key": "defaultOptionValue"}, 13 | {"key": "accentColor"}, 14 | {"key": "borderRadius"}, 15 | {"key": "sourceData"} 16 | ], 17 | "leftColumn": 0, 18 | "placeholderText": "Select option", 19 | "isDisabled": false, 20 | "isRequired": false, 21 | "dynamicHeight": "FIXED", 22 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 23 | "isVisible": true, 24 | "version": 1, 25 | "tags": [ 26 | "Suggested", 27 | "Select" 28 | ], 29 | "isLoading": false, 30 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 31 | "alignment": "start", 32 | "mobileBottomRow": 44.996875, 33 | "widgetName": "ModelList", 34 | "isFilterable": true, 35 | "dynamicPropertyPathList": [{"key": "sourceData"}], 36 | "displayName": "Select", 37 | "searchTags": ["dropdown"], 38 | "bottomRow": 11.798437500000002, 39 | "parentRowSpace": 10, 40 | "hideCard": false, 41 | "mobileRightColumn": 64, 42 | "dynamicTriggerPathList": [{"key": "onOptionChange"}], 43 | "labelPosition": "Top", 44 | "sourceData": "{{GetListOfLLMs.data.data.map( (obj) =>{ return {'label': obj.id, 'value': obj.object } })}}\n\n", 45 | "key": "f087oful75", 46 | "labelTextSize": "0.875rem", 47 | "isDeprecated": false, 48 | "rightColumn": 64, 49 | "widgetId": "dvg3akr11z", 50 | "optionValue": "label", 51 | "minWidth": 450, 52 | "parentId": "767uxsd0qa", 53 | "labelAlignment": "left", 54 | "renderMode": "CANVAS", 55 | "mobileTopRow": 37.996875, 56 | "optionLabel": "label", 57 | "responsiveBehavior": "fill", 58 | "mobileLeftColumn": 0, 59 | "maxDynamicHeight": 9000, 60 | "onOptionChange": "{{showModal('Modal2');\nFetchModel_Config.run()}}", 61 | "minDynamicHeight": 4 62 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/Feedback_Input.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)", 3 | "widthInPercentage": "0.26437462951985774", 4 | "iconSVG": "/static/media/icon.f2c34197dbcf03595098986de898928f.svg", 5 | "topRow": 5.2, 6 | "labelWidth": 5, 7 | "type": "INPUT_WIDGET_V2", 8 | "animateLoading": true, 9 | "resetOnSubmit": true, 10 | "leftColumn": 0, 11 | "dynamicBindingPathList": [ 12 | {"key": "accentColor"}, 13 | {"key": "borderRadius"}, 14 | {"key": "validation"} 15 | ], 16 | "labelStyle": "", 17 | "inputType": "MULTI_LINE_TEXT", 18 | "maxChars": "2000", 19 | "placeholderText": "Your Comments, Feedbacks or any general questions are much appreciated.", 20 | "isDisabled": false, 21 | "validation": "{{Feedback_Input.text.length > 0}}", 22 | "isRequired": true, 23 | "dynamicHeight": "AUTO_HEIGHT", 24 | "iconName": "style", 25 | "accentColor": "{{appsmith.theme.colors.primaryColor}}", 26 | "showStepArrows": false, 27 | "isVisible": true, 28 | "version": 2, 29 | "tags": [ 30 | "Suggested", 31 | "Inputs" 32 | ], 33 | "isLoading": false, 34 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 35 | "alignment": "start", 36 | "mobileBottomRow": 8.6, 37 | "widgetName": "Feedback_Input", 38 | "displayName": "Input", 39 | "searchTags": [ 40 | "form", 41 | "text input", 42 | "number", 43 | "textarea" 44 | ], 45 | "bottomRow": 24.2, 46 | "parentRowSpace": 10, 47 | "autoFocus": false, 48 | "hideCard": false, 49 | "mobileRightColumn": 64, 50 | "parentColumnSpace": 6.96875, 51 | "dynamicTriggerPathList": [], 52 | "labelPosition": "Top", 53 | "key": "xgqhxxozks", 54 | "labelTextSize": "0.875rem", 55 | "isDeprecated": false, 56 | "rightColumn": 64, 57 | "widgetId": "y8kpidztvr", 58 | "errorMessage": "Please write your questions or feedback in details.", 59 | "minWidth": 450, 60 | "label": "Your Questions/Feedback", 61 | "parentId": "frd0zdq61p", 62 | "labelAlignment": "left", 63 | "renderMode": "CANVAS", 64 | "mobileTopRow": 2, 65 | "responsiveBehavior": "fill", 66 | "mobileLeftColumn": 0, 67 | "maxDynamicHeight": 9000, 68 | "shouldAllowAutofill": false, 69 | "iconAlign": "left", 70 | "defaultText": "", 71 | "minDynamicHeight": 4 72 | } -------------------------------------------------------------------------------- /pages/Home/queries/AddNewLLM/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginType": "API", 3 | "pluginId": "restapi-plugin", 4 | "unpublishedAction": { 5 | "name": "AddNewLLM", 6 | "datasource": { 7 | "name": "DEFAULT_REST_DATASOURCE", 8 | "pluginId": "restapi-plugin", 9 | "datasourceConfiguration": { 10 | "sshProxyEnabled": false, 11 | "url": "" 12 | }, 13 | "invalids": [], 14 | "messages": [], 15 | "isAutoGenerated": false, 16 | "deleted": false, 17 | "policies": [], 18 | "userPermissions": [] 19 | }, 20 | "pageId": "Home", 21 | "actionConfiguration": { 22 | "timeoutInMillisecond": 10000, 23 | "paginationType": "NONE", 24 | "path": "{{Input1.text}}/model/new", 25 | "headers": [ 26 | { 27 | "key": "Authorization", 28 | "value": "Bearer {{Input2.text}}" 29 | } 30 | ], 31 | "autoGeneratedHeaders": [ 32 | { 33 | "key": "content-type", 34 | "value": "application/json" 35 | } 36 | ], 37 | "encodeParamsToggle": true, 38 | "queryParameters": [], 39 | "body": "{\n\t\"model_name\": \"{{ModelGroupValueInput.text}}\",\n\t \"litellm_params\": {\n \"model\": \"{{TargetModelNameInput.text}}\",\n \"api_base\": \"{{TargetAPIBaseInput.text}}\",\n\t \"api_key\": \"{{TargetAPIKeyInput.text}}\",\n\t \"rpm\": \"{{Add_Model_RPM_Value.text}}\",\n\t \"tpm\": \"{{Add_model_tpm_val.text}}\"\n },\n \"model_info\": {\n \"input_cost_per_token\": \"{{inputcostvalue.text}}\",\n \"output_cost_per_token\": \"{{outputcostvalue.text}}\",\n \"max_tokens\": \"{{maxtokens.text}}\"\n }\n}", 40 | "bodyFormData": [], 41 | "httpMethod": "POST", 42 | "selfReferencingDataPaths": [], 43 | "pluginSpecifiedTemplates": [ 44 | { 45 | "value": true 46 | } 47 | ], 48 | "formData": { 49 | "apiContentType": "application/json" 50 | } 51 | }, 52 | "executeOnLoad": false, 53 | "dynamicBindingPathList": [ 54 | { 55 | "key": "path" 56 | }, 57 | { 58 | "key": "headers[0].value" 59 | }, 60 | { 61 | "key": "body" 62 | } 63 | ], 64 | "isValid": true, 65 | "invalids": [], 66 | "messages": [], 67 | "jsonPathKeys": [ 68 | "Add_Model_RPM_Value.text", 69 | "Add_model_tpm_val.text", 70 | "Input1.text", 71 | "Input2.text", 72 | "ModelGroupValueInput.text", 73 | "TargetAPIBaseInput.text", 74 | "TargetAPIKeyInput.text", 75 | "TargetModelNameInput.text", 76 | "inputcostvalue.text", 77 | "maxtokens.text", 78 | "outputcostvalue.text" 79 | ], 80 | "userSetOnLoad": false, 81 | "confirmBeforeExecute": false, 82 | "policies": [], 83 | "userPermissions": [], 84 | "createdAt": "2023-12-19T15:13:31Z" 85 | }, 86 | "id": "Home_AddNewLLM", 87 | "deleted": false, 88 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581b31bb2a9615a33217f7c" 89 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container5/Container5.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 74, 4 | "widgetName": "Container5", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 53.1953125, 15 | "bottomRow": 64.3953125, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 26.125, 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "borderRadius"}, 26 | {"key": "boxShadow"} 27 | ], 28 | "children": [{ 29 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 30 | "mobileBottomRow": 100, 31 | "widgetName": "Canvas11", 32 | "displayName": "Canvas", 33 | "topRow": 0, 34 | "bottomRow": 112.00000000000003, 35 | "parentRowSpace": 1, 36 | "type": "CANVAS_WIDGET", 37 | "canExtend": false, 38 | "hideCard": true, 39 | "minHeight": 100, 40 | "mobileRightColumn": 64, 41 | "parentColumnSpace": 1, 42 | "leftColumn": 0, 43 | "dynamicBindingPathList": [ 44 | {"key": "borderRadius"}, 45 | {"key": "boxShadow"} 46 | ], 47 | "key": "etxaj0c2jw", 48 | "isDeprecated": false, 49 | "rightColumn": 64, 50 | "detachFromLayout": true, 51 | "dynamicHeight": "AUTO_HEIGHT", 52 | "widgetId": "xjxenwf6ar", 53 | "containerStyle": "none", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "a3afdu9wx0", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "responsiveBehavior": "fill", 62 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 63 | "mobileLeftColumn": 0, 64 | "maxDynamicHeight": 9000, 65 | "minDynamicHeight": 4, 66 | "flexLayers": [ 67 | {"children": [{ 68 | "id": "1maebqatps", 69 | "align": "start" 70 | }]}, 71 | {"children": [{ 72 | "id": "7cwaf1atii", 73 | "align": "start" 74 | }]} 75 | ] 76 | }], 77 | "borderWidth": "1", 78 | "flexVerticalAlignment": "stretch", 79 | "key": "pw5pj7nrdi", 80 | "backgroundColor": "#FFFFFF", 81 | "isDeprecated": false, 82 | "rightColumn": 64, 83 | "dynamicHeight": "AUTO_HEIGHT", 84 | "widgetId": "a3afdu9wx0", 85 | "containerStyle": "card", 86 | "minWidth": 450, 87 | "isVisible": true, 88 | "version": 1, 89 | "parentId": "0", 90 | "tags": ["Layout"], 91 | "renderMode": "CANVAS", 92 | "isLoading": false, 93 | "mobileTopRow": 64, 94 | "responsiveBehavior": "fill", 95 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 96 | "mobileLeftColumn": 0, 97 | "maxDynamicHeight": 9000, 98 | "alignment": "start", 99 | "minDynamicHeight": 10 100 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container1/Container1.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 22, 4 | "widgetName": "Container1", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 10.7984375, 15 | "bottomRow": 31.796875, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 26.234375, 23 | "dynamicTriggerPathList": [], 24 | "leftColumn": 0, 25 | "dynamicBindingPathList": [{"key": "boxShadow"}], 26 | "children": [{ 27 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 28 | "mobileBottomRow": 100, 29 | "widgetName": "Canvas1", 30 | "displayName": "Canvas", 31 | "topRow": 0, 32 | "bottomRow": 199.984375, 33 | "parentRowSpace": 1, 34 | "type": "CANVAS_WIDGET", 35 | "canExtend": false, 36 | "hideCard": true, 37 | "minHeight": 100, 38 | "mobileRightColumn": 64, 39 | "parentColumnSpace": 1, 40 | "leftColumn": 0, 41 | "dynamicBindingPathList": [ 42 | {"key": "borderRadius"}, 43 | {"key": "boxShadow"} 44 | ], 45 | "key": "bmqw5z2t38", 46 | "isDeprecated": false, 47 | "rightColumn": 64, 48 | "detachFromLayout": true, 49 | "dynamicHeight": "AUTO_HEIGHT", 50 | "widgetId": "x1at6z2v95", 51 | "containerStyle": "none", 52 | "minWidth": 450, 53 | "isVisible": true, 54 | "version": 1, 55 | "parentId": "wib9bejiys", 56 | "renderMode": "CANVAS", 57 | "isLoading": false, 58 | "mobileTopRow": 0, 59 | "responsiveBehavior": "fill", 60 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 61 | "mobileLeftColumn": 0, 62 | "maxDynamicHeight": 9000, 63 | "minDynamicHeight": 4, 64 | "flexLayers": [ 65 | {"children": [{ 66 | "id": "xxvlmfec62", 67 | "align": "start" 68 | }]}, 69 | {"children": [ 70 | { 71 | "id": "h4e3hnb4bo", 72 | "align": "start" 73 | }, 74 | { 75 | "id": "7mosszhs7m", 76 | "align": "start" 77 | } 78 | ]}, 79 | {"children": [{ 80 | "id": "jmv1n1wsqt", 81 | "align": "center" 82 | }]} 83 | ] 84 | }], 85 | "borderWidth": "2", 86 | "flexVerticalAlignment": "stretch", 87 | "key": "jrtdvhhvpm", 88 | "backgroundColor": "#FFFFFF", 89 | "isDeprecated": false, 90 | "rightColumn": 64, 91 | "dynamicHeight": "AUTO_HEIGHT", 92 | "widgetId": "wib9bejiys", 93 | "containerStyle": "card", 94 | "minWidth": 450, 95 | "isVisible": true, 96 | "version": 1, 97 | "parentId": "0", 98 | "tags": ["Layout"], 99 | "renderMode": "CANVAS", 100 | "isLoading": false, 101 | "mobileTopRow": 12, 102 | "responsiveBehavior": "fill", 103 | "borderRadius": "0.375rem", 104 | "mobileLeftColumn": 0, 105 | "maxDynamicHeight": 9000, 106 | "alignment": "start", 107 | "minDynamicHeight": 10 108 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Container3/Container3.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 44, 4 | "widgetName": "Container3", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 32.996875, 15 | "bottomRow": 51.995312500000004, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 24.96875, 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "borderRadius"}, 26 | {"key": "boxShadow"} 27 | ], 28 | "children": [{ 29 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 30 | "mobileBottomRow": 100, 31 | "widgetName": "Canvas5", 32 | "displayName": "Canvas", 33 | "topRow": 0, 34 | "bottomRow": 189.984375, 35 | "parentRowSpace": 1, 36 | "type": "CANVAS_WIDGET", 37 | "canExtend": false, 38 | "hideCard": true, 39 | "minHeight": 100, 40 | "mobileRightColumn": 64, 41 | "parentColumnSpace": 1, 42 | "leftColumn": 0, 43 | "dynamicBindingPathList": [ 44 | {"key": "borderRadius"}, 45 | {"key": "boxShadow"} 46 | ], 47 | "key": "dmxafbmnrq", 48 | "isDeprecated": false, 49 | "rightColumn": 64, 50 | "detachFromLayout": true, 51 | "dynamicHeight": "AUTO_HEIGHT", 52 | "widgetId": "767uxsd0qa", 53 | "containerStyle": "none", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "jyxjka25a0", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "responsiveBehavior": "fill", 62 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 63 | "mobileLeftColumn": 0, 64 | "maxDynamicHeight": 9000, 65 | "minDynamicHeight": 4, 66 | "flexLayers": [ 67 | {"children": [{ 68 | "id": "axw2iteu4o", 69 | "align": "start" 70 | }]}, 71 | {"children": [{ 72 | "id": "dvg3akr11z", 73 | "align": "start" 74 | }]}, 75 | {"children": [ 76 | { 77 | "id": "m9x7q1q3zw", 78 | "align": "start" 79 | }, 80 | { 81 | "id": "0k21c33b5d", 82 | "align": "start" 83 | } 84 | ]} 85 | ] 86 | }], 87 | "borderWidth": "1", 88 | "flexVerticalAlignment": "stretch", 89 | "key": "hla2moev57", 90 | "backgroundColor": "#FFFFFF", 91 | "isDeprecated": false, 92 | "rightColumn": 64, 93 | "dynamicHeight": "AUTO_HEIGHT", 94 | "widgetId": "jyxjka25a0", 95 | "containerStyle": "card", 96 | "minWidth": 450, 97 | "isVisible": true, 98 | "version": 1, 99 | "parentId": "0", 100 | "tags": ["Layout"], 101 | "renderMode": "CANVAS", 102 | "isLoading": false, 103 | "mobileTopRow": 34, 104 | "responsiveBehavior": "fill", 105 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 106 | "mobileLeftColumn": 0, 107 | "maxDynamicHeight": 9000, 108 | "alignment": "start", 109 | "minDynamicHeight": 10 110 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Container4/Container4.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 17, 4 | "widgetName": "Container4", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 6.4, 15 | "bottomRow": 18.237500000000004, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 6.96875, 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "borderRadius"}, 26 | {"key": "boxShadow"} 27 | ], 28 | "children": [{ 29 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 30 | "mobileBottomRow": 100, 31 | "widgetName": "Canvas10", 32 | "displayName": "Canvas", 33 | "topRow": 0, 34 | "bottomRow": 118.37500000000003, 35 | "parentRowSpace": 1, 36 | "type": "CANVAS_WIDGET", 37 | "canExtend": false, 38 | "hideCard": true, 39 | "minHeight": 100, 40 | "mobileRightColumn": 64, 41 | "parentColumnSpace": 1, 42 | "leftColumn": 0, 43 | "dynamicBindingPathList": [ 44 | {"key": "borderRadius"}, 45 | {"key": "boxShadow"} 46 | ], 47 | "key": "etxaj0c2jw", 48 | "isDeprecated": false, 49 | "rightColumn": 64, 50 | "detachFromLayout": true, 51 | "dynamicHeight": "AUTO_HEIGHT", 52 | "widgetId": "buab35d3hy", 53 | "containerStyle": "none", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "rod481xbkj", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "responsiveBehavior": "fill", 62 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 63 | "mobileLeftColumn": 0, 64 | "maxDynamicHeight": 9000, 65 | "minDynamicHeight": 4, 66 | "flexLayers": [ 67 | {"children": [ 68 | { 69 | "id": "qvmhnq5f20", 70 | "align": "start" 71 | }, 72 | { 73 | "id": "i9y8110hr7", 74 | "align": "start" 75 | } 76 | ]}, 77 | {"children": [ 78 | { 79 | "id": "zkvskeab0y", 80 | "align": "start" 81 | }, 82 | { 83 | "id": "b6551p2ijy", 84 | "align": "start" 85 | } 86 | ]} 87 | ] 88 | }], 89 | "borderWidth": "1", 90 | "flexVerticalAlignment": "stretch", 91 | "key": "pw5pj7nrdi", 92 | "backgroundColor": "#FFFFFF", 93 | "isDeprecated": false, 94 | "rightColumn": 64, 95 | "dynamicHeight": "AUTO_HEIGHT", 96 | "widgetId": "rod481xbkj", 97 | "containerStyle": "card", 98 | "minWidth": 450, 99 | "isVisible": true, 100 | "version": 1, 101 | "parentId": "qxdou9f9qw", 102 | "tags": ["Layout"], 103 | "renderMode": "CANVAS", 104 | "isLoading": false, 105 | "mobileTopRow": 7, 106 | "responsiveBehavior": "fill", 107 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 108 | "mobileLeftColumn": 0, 109 | "maxDynamicHeight": 9000, 110 | "alignment": "start", 111 | "minDynamicHeight": 10 112 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Container2/Container2.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 14, 4 | "widgetName": "Container2", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 5.2, 15 | "bottomRow": 26.8, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 6.96875, 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "borderRadius"}, 26 | {"key": "boxShadow"} 27 | ], 28 | "children": [{ 29 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 30 | "mobileBottomRow": 100, 31 | "widgetName": "Canvas4", 32 | "displayName": "Canvas", 33 | "topRow": 0, 34 | "bottomRow": 216, 35 | "parentRowSpace": 1, 36 | "type": "CANVAS_WIDGET", 37 | "canExtend": false, 38 | "hideCard": true, 39 | "minHeight": 100, 40 | "mobileRightColumn": 64, 41 | "parentColumnSpace": 1, 42 | "leftColumn": 0, 43 | "dynamicBindingPathList": [ 44 | {"key": "borderRadius"}, 45 | {"key": "boxShadow"} 46 | ], 47 | "key": "2lza7nj9ll", 48 | "isDeprecated": false, 49 | "rightColumn": 64, 50 | "detachFromLayout": true, 51 | "dynamicHeight": "AUTO_HEIGHT", 52 | "widgetId": "mncj4tq1fw", 53 | "containerStyle": "none", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "62ugzzra50", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "responsiveBehavior": "fill", 62 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 63 | "mobileLeftColumn": 0, 64 | "maxDynamicHeight": 9000, 65 | "minDynamicHeight": 4, 66 | "flexLayers": [ 67 | {"children": [ 68 | { 69 | "id": "ge8y89vq35", 70 | "align": "start" 71 | }, 72 | { 73 | "id": "gnhk2cbgfh", 74 | "align": "start" 75 | } 76 | ]}, 77 | {"children": [ 78 | { 79 | "id": "jftl4h10e6", 80 | "align": "start" 81 | }, 82 | { 83 | "id": "51ftab4q6g", 84 | "align": "start" 85 | } 86 | ]}, 87 | {"children": [ 88 | { 89 | "id": "he52q9faon", 90 | "align": "start" 91 | }, 92 | { 93 | "id": "yy5gir9pwf", 94 | "align": "start" 95 | } 96 | ]}, 97 | {"children": [ 98 | { 99 | "id": "qaje1iufqo", 100 | "align": "start" 101 | }, 102 | { 103 | "id": "o58kg85hs0", 104 | "align": "start" 105 | } 106 | ]} 107 | ] 108 | }], 109 | "borderWidth": "1", 110 | "flexVerticalAlignment": "stretch", 111 | "key": "7dt2o32qpy", 112 | "backgroundColor": "#FFFFFF", 113 | "isDeprecated": false, 114 | "rightColumn": 64, 115 | "dynamicHeight": "AUTO_HEIGHT", 116 | "widgetId": "62ugzzra50", 117 | "containerStyle": "card", 118 | "minWidth": 450, 119 | "isVisible": true, 120 | "version": 1, 121 | "parentId": "nfu8zlo8hn", 122 | "tags": ["Layout"], 123 | "renderMode": "CANVAS", 124 | "isLoading": false, 125 | "mobileTopRow": 4, 126 | "responsiveBehavior": "fill", 127 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 128 | "mobileLeftColumn": 0, 129 | "maxDynamicHeight": 9000, 130 | "alignment": "start", 131 | "minDynamicHeight": 10 132 | } -------------------------------------------------------------------------------- /pages/Home/Home.json: -------------------------------------------------------------------------------- 1 | { 2 | "unpublishedPage": { 3 | "name": "Home", 4 | "slug": "home", 5 | "layouts": [ 6 | { 7 | "viewMode": false, 8 | "dsl": { 9 | "widgetName": "MainContainer", 10 | "topRow": 0, 11 | "bottomRow": 3173.0468750000005, 12 | "parentRowSpace": 1, 13 | "type": "CANVAS_WIDGET", 14 | "canExtend": true, 15 | "minHeight": 1292, 16 | "useAutoLayout": true, 17 | "dynamicTriggerPathList": [], 18 | "parentColumnSpace": 1, 19 | "dynamicBindingPathList": [], 20 | "leftColumn": 0, 21 | "positioning": "vertical", 22 | "backgroundColor": "none", 23 | "rightColumn": 4896, 24 | "snapColumns": 64, 25 | "detachFromLayout": true, 26 | "widgetId": "0", 27 | "containerStyle": "none", 28 | "snapRows": 124, 29 | "version": 87, 30 | "responsiveBehavior": "fill", 31 | "flexLayers": [ 32 | { 33 | "children": [ 34 | { 35 | "id": "9kd540bnnk", 36 | "align": "start" 37 | }, 38 | { 39 | "id": "8ihgqex0v6", 40 | "align": "start" 41 | }, 42 | { 43 | "id": "oahsvt0jen", 44 | "align": "start" 45 | }, 46 | { 47 | "id": "7g9y8qwdei", 48 | "align": "start" 49 | }, 50 | { 51 | "id": "c1nqffcnq7", 52 | "align": "start" 53 | } 54 | ] 55 | }, 56 | { 57 | "children": [ 58 | { 59 | "id": "w3cw2mz2sv", 60 | "align": "start" 61 | } 62 | ] 63 | }, 64 | { 65 | "children": [ 66 | { 67 | "id": "wib9bejiys", 68 | "align": "start" 69 | } 70 | ] 71 | }, 72 | { 73 | "children": [ 74 | { 75 | "id": "jyxjka25a0", 76 | "align": "start" 77 | } 78 | ] 79 | }, 80 | { 81 | "children": [ 82 | { 83 | "id": "a3afdu9wx0", 84 | "align": "start" 85 | } 86 | ] 87 | }, 88 | { 89 | "children": [ 90 | { 91 | "id": "kbp5wj0inb", 92 | "align": "start" 93 | } 94 | ] 95 | }, 96 | { 97 | "children": [ 98 | { 99 | "id": "id4hj453bu", 100 | "align": "start" 101 | } 102 | ] 103 | }, 104 | { 105 | "children": [ 106 | { 107 | "id": "bhypqw1zz3", 108 | "align": "center" 109 | } 110 | ] 111 | }, 112 | { 113 | "children": [ 114 | { 115 | "id": "iehkulh0us", 116 | "align": "center" 117 | } 118 | ] 119 | }, 120 | { 121 | "children": [ 122 | { 123 | "id": "b31ekfcs9k", 124 | "align": "center" 125 | } 126 | ] 127 | }, 128 | { 129 | "children": [ 130 | { 131 | "id": "c9lqsr8obq", 132 | "align": "center" 133 | } 134 | ] 135 | } 136 | ] 137 | }, 138 | "layoutOnLoadActions": [ 139 | [ 140 | { 141 | "id": "Home_FetchModel_Config", 142 | "name": "FetchModel_Config", 143 | "confirmBeforeExecute": false, 144 | "pluginType": "API", 145 | "jsonPathKeys": [ 146 | "Input1.text", 147 | "Input2.text" 148 | ], 149 | "timeoutInMillisecond": 10000 150 | }, 151 | { 152 | "id": "Home_GetListOfLLMs", 153 | "name": "GetListOfLLMs", 154 | "confirmBeforeExecute": false, 155 | "pluginType": "API", 156 | "jsonPathKeys": [ 157 | "Input1.text", 158 | "Input2.text" 159 | ], 160 | "timeoutInMillisecond": 10000 161 | } 162 | ] 163 | ], 164 | "layoutOnLoadActionErrors": [], 165 | "validOnPageLoadActions": true, 166 | "id": "Home", 167 | "deleted": false, 168 | "policies": [], 169 | "userPermissions": [] 170 | } 171 | ], 172 | "userPermissions": [], 173 | "policies": [], 174 | "isHidden": false 175 | }, 176 | "deleted": false, 177 | "gitSyncId": "6581a20cb2a9615a33217f6b_6581a20cb2a9615a33217f6d" 178 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Statbox1/Statbox1.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 95, 4 | "widgetName": "Statbox1", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Stats Box", 8 | "iconSVG": "/static/media/icon.182a90a0c52d97288bf067cc9c4186d4.svg", 9 | "searchTags": ["statbox"], 10 | "topRow": 70.79531250000001, 11 | "bottomRow": 95.1953125, 12 | "parentRowSpace": 10, 13 | "type": "STATBOX_WIDGET", 14 | "hideCard": false, 15 | "shouldScrollContents": true, 16 | "mobileRightColumn": 64, 17 | "animateLoading": true, 18 | "parentColumnSpace": 26.125, 19 | "dynamicTriggerPathList": [], 20 | "leftColumn": 0, 21 | "dynamicBindingPathList": [ 22 | {"key": "borderRadius"}, 23 | {"key": "boxShadow"} 24 | ], 25 | "children": [{ 26 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 27 | "mobileBottomRow": 140, 28 | "widgetName": "Canvas13", 29 | "displayName": "Canvas", 30 | "topRow": 0, 31 | "bottomRow": 243.99999999999991, 32 | "parentRowSpace": 1, 33 | "type": "CANVAS_WIDGET", 34 | "canExtend": false, 35 | "hideCard": true, 36 | "minHeight": 140, 37 | "mobileRightColumn": 64, 38 | "useAutoLayout": true, 39 | "parentColumnSpace": 1, 40 | "leftColumn": 0, 41 | "dynamicBindingPathList": [ 42 | {"key": "borderRadius"}, 43 | {"key": "boxShadow"} 44 | ], 45 | "positioning": "vertical", 46 | "key": "etxaj0c2jw", 47 | "isDeprecated": false, 48 | "rightColumn": 64, 49 | "detachFromLayout": true, 50 | "dynamicHeight": "AUTO_HEIGHT", 51 | "widgetId": "ozf3shnk8y", 52 | "containerStyle": "none", 53 | "minWidth": 450, 54 | "isVisible": true, 55 | "version": 1, 56 | "parentId": "id4hj453bu", 57 | "renderMode": "CANVAS", 58 | "isLoading": false, 59 | "mobileTopRow": 0, 60 | "layout": [{ 61 | "layout": [ 62 | { 63 | "layout": [ 64 | { 65 | "layout": [{ 66 | "widgetId": "bnoj8z9aeq", 67 | "alignment": "start" 68 | }], 69 | "layoutType": "WIDGET_ROW", 70 | "layoutStyle": {"alignSelf": "stretch"}, 71 | "layoutId": "ik1awy9bad" 72 | }, 73 | { 74 | "layout": [{ 75 | "widgetId": "gb7t7ohh83", 76 | "alignment": "start" 77 | }], 78 | "layoutType": "WIDGET_ROW", 79 | "layoutStyle": {"alignSelf": "stretch"}, 80 | "layoutId": "skmba8h13g" 81 | }, 82 | { 83 | "layout": [{ 84 | "widgetId": "p6c781glpd", 85 | "alignment": "start" 86 | }], 87 | "layoutType": "WIDGET_ROW", 88 | "layoutStyle": {"alignSelf": "stretch"}, 89 | "layoutId": "smcivltrcs" 90 | } 91 | ], 92 | "isPermanent": true, 93 | "layoutType": "LAYOUT_COLUMN", 94 | "layoutStyle": {"flexGrow": 1}, 95 | "layoutId": "r61gfxrshj", 96 | "isDropTarget": true 97 | }, 98 | { 99 | "layout": [{ 100 | "widgetId": "f5fzp76e3l", 101 | "alignment": "start" 102 | }], 103 | "isPermanent": true, 104 | "layoutType": "WIDGET_COLUMN", 105 | "layoutStyle": {"alignSelf": "flex-end"}, 106 | "layoutId": "qhsrd3lzxy", 107 | "isDropTarget": true 108 | } 109 | ], 110 | "layoutType": "LAYOUT_ROW", 111 | "layoutStyle": {"wrap": "wrap-reverse"}, 112 | "layoutId": "mn3lq9tq38" 113 | }], 114 | "responsiveBehavior": "fill", 115 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 116 | "mobileLeftColumn": 0, 117 | "maxDynamicHeight": 9000, 118 | "minDynamicHeight": 4, 119 | "flexLayers": [ 120 | {"children": [{ 121 | "id": "bnoj8z9aeq", 122 | "align": "start" 123 | }]}, 124 | {"children": [{ 125 | "id": "gtf0flg677", 126 | "align": "start" 127 | }]}, 128 | {"children": [ 129 | { 130 | "id": "5f8una9ny5", 131 | "align": "center" 132 | }, 133 | { 134 | "id": "f5fzp76e3l", 135 | "align": "end" 136 | } 137 | ]} 138 | ] 139 | }], 140 | "borderWidth": "1", 141 | "positioning": "fixed", 142 | "flexVerticalAlignment": "stretch", 143 | "key": "ovc1aixuwa", 144 | "backgroundColor": "#d4d4d8", 145 | "isDeprecated": false, 146 | "rightColumn": 64, 147 | "dynamicHeight": "AUTO_HEIGHT", 148 | "widgetId": "id4hj453bu", 149 | "isVisible": true, 150 | "parentId": "0", 151 | "tags": ["Display"], 152 | "renderMode": "CANVAS", 153 | "isLoading": false, 154 | "mobileTopRow": 81, 155 | "responsiveBehavior": "fill", 156 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 157 | "mobileLeftColumn": 0, 158 | "maxDynamicHeight": 9000, 159 | "alignment": "start", 160 | "minDynamicHeight": 14 161 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model_Questions/Add_Model_Questions.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 3 | "mobileBottomRow": 19, 4 | "widgetName": "Add_Model_Questions", 5 | "borderColor": "#E0DEDE", 6 | "isCanvas": true, 7 | "displayName": "Container", 8 | "iconSVG": "/static/media/icon.daebf68875b6c8e909e9e8ac8bee0c02.svg", 9 | "searchTags": [ 10 | "div", 11 | "parent", 12 | "group" 13 | ], 14 | "topRow": 6.4, 15 | "bottomRow": 91.87187500000002, 16 | "parentRowSpace": 10, 17 | "type": "CONTAINER_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 64, 21 | "animateLoading": true, 22 | "parentColumnSpace": 8.21875, 23 | "leftColumn": 0, 24 | "dynamicBindingPathList": [ 25 | {"key": "borderRadius"}, 26 | {"key": "boxShadow"} 27 | ], 28 | "children": [{ 29 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 30 | "mobileBottomRow": 100, 31 | "widgetName": "Canvas9", 32 | "displayName": "Canvas", 33 | "topRow": 0, 34 | "bottomRow": 854.7187500000001, 35 | "parentRowSpace": 1, 36 | "type": "CANVAS_WIDGET", 37 | "canExtend": false, 38 | "hideCard": true, 39 | "minHeight": 100, 40 | "mobileRightColumn": 64, 41 | "parentColumnSpace": 1, 42 | "leftColumn": 0, 43 | "dynamicBindingPathList": [ 44 | {"key": "borderRadius"}, 45 | {"key": "boxShadow"} 46 | ], 47 | "key": "2jset4odoc", 48 | "isDeprecated": false, 49 | "rightColumn": 64, 50 | "detachFromLayout": true, 51 | "dynamicHeight": "AUTO_HEIGHT", 52 | "widgetId": "f6ija1f84q", 53 | "containerStyle": "none", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "wx2yxqqtbk", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "responsiveBehavior": "fill", 62 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 63 | "mobileLeftColumn": 0, 64 | "maxDynamicHeight": 9000, 65 | "minDynamicHeight": 4, 66 | "flexLayers": [ 67 | {"children": [ 68 | { 69 | "id": "5s3ordp281", 70 | "align": "start" 71 | }, 72 | { 73 | "id": "cncviaqnnr", 74 | "align": "start" 75 | } 76 | ]}, 77 | {"children": [{ 78 | "id": "l83f2bphdy", 79 | "align": "start" 80 | }]}, 81 | {"children": [{ 82 | "id": "ci94xx45t2", 83 | "align": "start" 84 | }]}, 85 | {"children": [ 86 | { 87 | "id": "2jiz9ox80q", 88 | "align": "start" 89 | }, 90 | { 91 | "id": "jy47cu0w27", 92 | "align": "start" 93 | } 94 | ]}, 95 | {"children": [ 96 | { 97 | "id": "yskza4gv4f", 98 | "align": "start" 99 | }, 100 | { 101 | "id": "eqahdn7v5i", 102 | "align": "start" 103 | } 104 | ]}, 105 | {"children": [ 106 | { 107 | "id": "dh0ej9q62l", 108 | "align": "start" 109 | }, 110 | { 111 | "id": "lorahbx8x0", 112 | "align": "start" 113 | } 114 | ]}, 115 | {"children": [ 116 | { 117 | "id": "mta26pkkgt", 118 | "align": "start" 119 | }, 120 | { 121 | "id": "0ypiylmdv6", 122 | "align": "start" 123 | } 124 | ]}, 125 | {"children": [ 126 | { 127 | "id": "5tovwyxtl8", 128 | "align": "start" 129 | }, 130 | { 131 | "id": "rll7jk7y67", 132 | "align": "start" 133 | } 134 | ]}, 135 | {"children": [{ 136 | "id": "tx9jtq2buc", 137 | "align": "start" 138 | }]}, 139 | {"children": [{ 140 | "id": "tqj3njwvk4", 141 | "align": "start" 142 | }]}, 143 | {"children": [ 144 | { 145 | "id": "4kbqk13h81", 146 | "align": "start" 147 | }, 148 | { 149 | "id": "uihmud0tg8", 150 | "align": "start" 151 | } 152 | ]}, 153 | {"children": [ 154 | { 155 | "id": "w2a88wlk8s", 156 | "align": "start" 157 | }, 158 | { 159 | "id": "41irzhxfs8", 160 | "align": "start" 161 | } 162 | ]}, 163 | {"children": [ 164 | { 165 | "id": "j4jgn8vk33", 166 | "align": "start" 167 | }, 168 | { 169 | "id": "3yc7wlffqg", 170 | "align": "start" 171 | } 172 | ]} 173 | ] 174 | }], 175 | "borderWidth": "1", 176 | "flexVerticalAlignment": "stretch", 177 | "key": "i0po25hg5s", 178 | "backgroundColor": "#FFFFFF", 179 | "isDeprecated": false, 180 | "rightColumn": 64, 181 | "dynamicHeight": "AUTO_HEIGHT", 182 | "widgetId": "wx2yxqqtbk", 183 | "containerStyle": "card", 184 | "minWidth": 450, 185 | "isVisible": true, 186 | "version": 1, 187 | "parentId": "frh7tek3vn", 188 | "tags": ["Layout"], 189 | "renderMode": "CANVAS", 190 | "isLoading": false, 191 | "mobileTopRow": 9, 192 | "responsiveBehavior": "fill", 193 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 194 | "mobileLeftColumn": 0, 195 | "maxDynamicHeight": 9000, 196 | "alignment": "start", 197 | "minDynamicHeight": 10 198 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal2/Modal2.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 0, 4 | "widgetName": "Modal2", 5 | "widthInPercentage": 0, 6 | "isCanvas": true, 7 | "displayName": "Modal", 8 | "iconSVG": "/static/media/icon.b374721fa8e1aeab7cf326c2d865506f.svg", 9 | "searchTags": [ 10 | "dialog", 11 | "popup", 12 | "notification" 13 | ], 14 | "topRow": 96.3953125, 15 | "bottomRow": 135.59531250000003, 16 | "parentRowSpace": 1, 17 | "type": "MODAL_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 0, 21 | "animateLoading": true, 22 | "parentColumnSpace": 1, 23 | "leftColumn": 32, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "children": [{ 26 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 27 | "mobileBottomRow": 0, 28 | "widgetName": "Canvas3", 29 | "displayName": "Canvas", 30 | "topRow": 0, 31 | "bottomRow": 390, 32 | "parentRowSpace": 1, 33 | "type": "CANVAS_WIDGET", 34 | "canExtend": true, 35 | "hideCard": true, 36 | "shouldScrollContents": false, 37 | "minHeight": 394, 38 | "mobileRightColumn": 64, 39 | "useAutoLayout": true, 40 | "parentColumnSpace": 1, 41 | "leftColumn": 0, 42 | "dynamicBindingPathList": [ 43 | {"key": "borderRadius"}, 44 | {"key": "boxShadow"} 45 | ], 46 | "positioning": "vertical", 47 | "isDisabled": false, 48 | "key": "2lza7nj9ll", 49 | "isDeprecated": false, 50 | "rightColumn": 64, 51 | "detachFromLayout": true, 52 | "dynamicHeight": "AUTO_HEIGHT", 53 | "widgetId": "nfu8zlo8hn", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "bhypqw1zz3", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "layout": [{ 62 | "layout": [ 63 | { 64 | "layout": [ 65 | { 66 | "layout": [{ 67 | "widgetId": "d9bf5af1ie", 68 | "alignment": "start" 69 | }], 70 | "isPermanent": true, 71 | "allowedWidgetTypes": ["TEXT_WIDGET"], 72 | "layoutType": "WIDGET_ROW", 73 | "layoutStyle": { 74 | "minHeight": "40px", 75 | "flexGrow": 1 76 | }, 77 | "layoutId": "4qnw4p1mh9", 78 | "isDropTarget": true 79 | }, 80 | { 81 | "layout": [{ 82 | "widgetId": "njtwcb4f5v", 83 | "alignment": "start" 84 | }], 85 | "isPermanent": true, 86 | "allowedWidgetTypes": ["ICON_BUTTON_WIDGET"], 87 | "layoutType": "WIDGET_ROW", 88 | "layoutStyle": { 89 | "minHeight": "40px", 90 | "minWidth": "30px" 91 | }, 92 | "layoutId": "zqde2otkv1", 93 | "isDropTarget": true 94 | } 95 | ], 96 | "isPermanent": true, 97 | "layoutType": "LAYOUT_ROW", 98 | "layoutStyle": {"minHeight": "40px"}, 99 | "layoutId": "fybvtv05zf" 100 | }, 101 | { 102 | "layout": [], 103 | "isPermanent": true, 104 | "layoutType": "ALIGNED_LAYOUT_COLUMN", 105 | "layoutStyle": { 106 | "minHeight": "40px", 107 | "width": "100%" 108 | }, 109 | "layoutId": "mdidyxak08", 110 | "isDropTarget": true 111 | }, 112 | { 113 | "layout": [ 114 | { 115 | "widgetId": "8lrr844xpc", 116 | "alignment": "end" 117 | }, 118 | { 119 | "widgetId": "qfvmkx465p", 120 | "alignment": "end" 121 | } 122 | ], 123 | "isPermanent": true, 124 | "layoutType": "ALIGNED_WIDGET_ROW", 125 | "layoutStyle": {"minHeight": "40px"}, 126 | "layoutId": "of7jdqspbx", 127 | "isDropTarget": true 128 | } 129 | ], 130 | "isPermanent": true, 131 | "layoutType": "LAYOUT_COLUMN", 132 | "layoutId": "vytx10go1k" 133 | }], 134 | "responsiveBehavior": "fill", 135 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 136 | "mobileLeftColumn": 0, 137 | "maxDynamicHeight": 9000, 138 | "minDynamicHeight": 4, 139 | "flexLayers": [ 140 | {"children": [ 141 | { 142 | "id": "d9bf5af1ie", 143 | "align": "start" 144 | }, 145 | { 146 | "id": "njtwcb4f5v", 147 | "align": "end" 148 | } 149 | ]}, 150 | {"children": [{ 151 | "id": "62ugzzra50", 152 | "align": "start" 153 | }]}, 154 | {"children": [{ 155 | "id": "tunwozlr1c", 156 | "align": "start" 157 | }]}, 158 | {"children": [ 159 | { 160 | "id": "8lrr844xpc", 161 | "align": "end" 162 | }, 163 | { 164 | "id": "ok3us2l8nx", 165 | "align": "end" 166 | } 167 | ]} 168 | ] 169 | }], 170 | "key": "d6awruts56", 171 | "height": 394, 172 | "isDeprecated": false, 173 | "rightColumn": 32, 174 | "detachFromLayout": true, 175 | "dynamicHeight": "AUTO_HEIGHT", 176 | "widgetId": "bhypqw1zz3", 177 | "canOutsideClickClose": true, 178 | "canEscapeKeyClose": true, 179 | "version": 2, 180 | "parentId": "0", 181 | "tags": ["Layout"], 182 | "renderMode": "CANVAS", 183 | "isLoading": false, 184 | "mobileTopRow": 0, 185 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 186 | "mobileLeftColumn": 0, 187 | "maxDynamicHeight": 9000, 188 | "width": 486, 189 | "alignment": "center", 190 | "minDynamicHeight": 8 191 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Add_Model/Add_Model.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 0, 4 | "widgetName": "Add_Model", 5 | "widthInPercentage": 0, 6 | "isCanvas": true, 7 | "displayName": "Modal", 8 | "iconSVG": "/static/media/icon.b374721fa8e1aeab7cf326c2d865506f.svg", 9 | "searchTags": [ 10 | "dialog", 11 | "popup", 12 | "notification" 13 | ], 14 | "topRow": 210.23281250000002, 15 | "bottomRow": 309.30468750000006, 16 | "parentRowSpace": 1, 17 | "type": "MODAL_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 0, 21 | "animateLoading": true, 22 | "parentColumnSpace": 1, 23 | "leftColumn": 32, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "children": [{ 26 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 27 | "mobileBottomRow": 0, 28 | "widgetName": "Canvas8", 29 | "displayName": "Canvas", 30 | "topRow": 0, 31 | "bottomRow": 990, 32 | "parentRowSpace": 1, 33 | "type": "CANVAS_WIDGET", 34 | "canExtend": true, 35 | "hideCard": true, 36 | "shouldScrollContents": false, 37 | "minHeight": 462.90625, 38 | "mobileRightColumn": 64, 39 | "useAutoLayout": true, 40 | "parentColumnSpace": 1, 41 | "leftColumn": 0, 42 | "dynamicBindingPathList": [ 43 | {"key": "borderRadius"}, 44 | {"key": "boxShadow"} 45 | ], 46 | "positioning": "vertical", 47 | "isDisabled": false, 48 | "key": "2jset4odoc", 49 | "isDeprecated": false, 50 | "rightColumn": 64, 51 | "detachFromLayout": true, 52 | "dynamicHeight": "AUTO_HEIGHT", 53 | "widgetId": "frh7tek3vn", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "c9lqsr8obq", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "layout": [{ 62 | "layout": [ 63 | { 64 | "layout": [ 65 | { 66 | "layout": [{ 67 | "widgetId": "n90v75mfhl", 68 | "alignment": "start" 69 | }], 70 | "isPermanent": true, 71 | "allowedWidgetTypes": ["TEXT_WIDGET"], 72 | "layoutType": "WIDGET_ROW", 73 | "layoutStyle": { 74 | "minHeight": "40px", 75 | "flexGrow": 1 76 | }, 77 | "layoutId": "rwk3gc1m8j", 78 | "isDropTarget": true 79 | }, 80 | { 81 | "layout": [{ 82 | "widgetId": "8vfpmwfbx5", 83 | "alignment": "start" 84 | }], 85 | "isPermanent": true, 86 | "allowedWidgetTypes": ["ICON_BUTTON_WIDGET"], 87 | "layoutType": "WIDGET_ROW", 88 | "layoutStyle": { 89 | "minHeight": "40px", 90 | "minWidth": "30px" 91 | }, 92 | "layoutId": "3qy8vvj1sy", 93 | "isDropTarget": true 94 | } 95 | ], 96 | "isPermanent": true, 97 | "layoutType": "LAYOUT_ROW", 98 | "layoutStyle": {"minHeight": "40px"}, 99 | "layoutId": "6b1ju5dhfg" 100 | }, 101 | { 102 | "layout": [], 103 | "isPermanent": true, 104 | "layoutType": "ALIGNED_LAYOUT_COLUMN", 105 | "layoutStyle": { 106 | "minHeight": "40px", 107 | "width": "100%" 108 | }, 109 | "layoutId": "v5ojv94fh4", 110 | "isDropTarget": true 111 | }, 112 | { 113 | "layout": [ 114 | { 115 | "widgetId": "vlnw6nqtmv", 116 | "alignment": "end" 117 | }, 118 | { 119 | "widgetId": "o4oxp952vt", 120 | "alignment": "end" 121 | } 122 | ], 123 | "isPermanent": true, 124 | "layoutType": "ALIGNED_WIDGET_ROW", 125 | "layoutStyle": {"minHeight": "40px"}, 126 | "layoutId": "qzqf1iuzco", 127 | "isDropTarget": true 128 | } 129 | ], 130 | "isPermanent": true, 131 | "layoutType": "LAYOUT_COLUMN", 132 | "layoutId": "e0cvueo8br" 133 | }], 134 | "responsiveBehavior": "fill", 135 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 136 | "mobileLeftColumn": 0, 137 | "maxDynamicHeight": 9000, 138 | "minDynamicHeight": 4, 139 | "flexLayers": [ 140 | {"children": [ 141 | { 142 | "id": "n90v75mfhl", 143 | "align": "start" 144 | }, 145 | { 146 | "id": "8vfpmwfbx5", 147 | "align": "end" 148 | } 149 | ]}, 150 | {"children": [{ 151 | "id": "u0q33qktps", 152 | "align": "start" 153 | }]}, 154 | {"children": [{ 155 | "id": "wx2yxqqtbk", 156 | "align": "start" 157 | }]}, 158 | {"children": [ 159 | { 160 | "id": "vlnw6nqtmv", 161 | "align": "end" 162 | }, 163 | { 164 | "id": "o4oxp952vt", 165 | "align": "end" 166 | } 167 | ]} 168 | ] 169 | }], 170 | "key": "yla9gjyn31", 171 | "height": 992.7187500000003, 172 | "isDeprecated": false, 173 | "rightColumn": 32, 174 | "detachFromLayout": true, 175 | "dynamicHeight": "AUTO_HEIGHT", 176 | "widgetId": "c9lqsr8obq", 177 | "canOutsideClickClose": true, 178 | "canEscapeKeyClose": true, 179 | "version": 2, 180 | "parentId": "0", 181 | "tags": ["Layout"], 182 | "renderMode": "CANVAS", 183 | "isLoading": false, 184 | "mobileTopRow": 0, 185 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 186 | "mobileLeftColumn": 0, 187 | "maxDynamicHeight": 9000, 188 | "width": 536, 189 | "alignment": "center", 190 | "minDynamicHeight": 8 191 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Modal3/Modal3.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 0, 4 | "widgetName": "Modal3", 5 | "widthInPercentage": 0, 6 | "isCanvas": true, 7 | "displayName": "Modal", 8 | "iconSVG": "/static/media/icon.b374721fa8e1aeab7cf326c2d865506f.svg", 9 | "searchTags": [ 10 | "dialog", 11 | "popup", 12 | "notification" 13 | ], 14 | "topRow": 136.79531250000002, 15 | "bottomRow": 163.4328125, 16 | "parentRowSpace": 1, 17 | "type": "MODAL_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 0, 21 | "animateLoading": true, 22 | "parentColumnSpace": 1, 23 | "leftColumn": 32, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "children": [{ 26 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 27 | "mobileBottomRow": 0, 28 | "widgetName": "Canvas6", 29 | "displayName": "Canvas", 30 | "topRow": 0, 31 | "bottomRow": 260, 32 | "parentRowSpace": 1, 33 | "type": "CANVAS_WIDGET", 34 | "canExtend": true, 35 | "hideCard": true, 36 | "shouldScrollContents": false, 37 | "minHeight": 0, 38 | "mobileRightColumn": 64, 39 | "useAutoLayout": true, 40 | "parentColumnSpace": 1, 41 | "leftColumn": 0, 42 | "dynamicBindingPathList": [ 43 | {"key": "borderRadius"}, 44 | {"key": "boxShadow"} 45 | ], 46 | "positioning": "vertical", 47 | "isDisabled": false, 48 | "key": "dmxafbmnrq", 49 | "isDeprecated": false, 50 | "rightColumn": 64, 51 | "detachFromLayout": true, 52 | "dynamicHeight": "AUTO_HEIGHT", 53 | "widgetId": "qxdou9f9qw", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "iehkulh0us", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "layout": [{ 62 | "layout": [ 63 | { 64 | "layout": [ 65 | { 66 | "layout": [{ 67 | "widgetId": "jfjpasacsc", 68 | "alignment": "start" 69 | }], 70 | "isPermanent": true, 71 | "allowedWidgetTypes": ["TEXT_WIDGET"], 72 | "layoutType": "WIDGET_ROW", 73 | "layoutStyle": { 74 | "minHeight": "40px", 75 | "flexGrow": 1 76 | }, 77 | "layoutId": "2rwlfko0zc", 78 | "isDropTarget": true 79 | }, 80 | { 81 | "layout": [{ 82 | "widgetId": "6sva8iqt0v", 83 | "alignment": "start" 84 | }], 85 | "isPermanent": true, 86 | "allowedWidgetTypes": ["ICON_BUTTON_WIDGET"], 87 | "layoutType": "WIDGET_ROW", 88 | "layoutStyle": { 89 | "minHeight": "40px", 90 | "minWidth": "30px" 91 | }, 92 | "layoutId": "g7r1l0lwsj", 93 | "isDropTarget": true 94 | } 95 | ], 96 | "isPermanent": true, 97 | "layoutType": "LAYOUT_ROW", 98 | "layoutStyle": {"minHeight": "40px"}, 99 | "layoutId": "mn110yref7" 100 | }, 101 | { 102 | "layout": [], 103 | "isPermanent": true, 104 | "layoutType": "ALIGNED_LAYOUT_COLUMN", 105 | "layoutStyle": { 106 | "minHeight": "40px", 107 | "width": "100%" 108 | }, 109 | "layoutId": "0g472efh58", 110 | "isDropTarget": true 111 | }, 112 | { 113 | "layout": [ 114 | { 115 | "widgetId": "0tzlkofnmg", 116 | "alignment": "end" 117 | }, 118 | { 119 | "widgetId": "z5zrsxonz5", 120 | "alignment": "end" 121 | } 122 | ], 123 | "isPermanent": true, 124 | "layoutType": "ALIGNED_WIDGET_ROW", 125 | "layoutStyle": {"minHeight": "40px"}, 126 | "layoutId": "l66dsigqai", 127 | "isDropTarget": true 128 | } 129 | ], 130 | "isPermanent": true, 131 | "layoutType": "LAYOUT_COLUMN", 132 | "layoutId": "vfisjdezro" 133 | }], 134 | "responsiveBehavior": "fill", 135 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 136 | "mobileLeftColumn": 0, 137 | "maxDynamicHeight": 9000, 138 | "minDynamicHeight": 4, 139 | "flexLayers": [ 140 | {"children": [ 141 | { 142 | "id": "jfjpasacsc", 143 | "align": "start" 144 | }, 145 | { 146 | "id": "6sva8iqt0v", 147 | "align": "end" 148 | } 149 | ]}, 150 | {"children": [{ 151 | "id": "qxmylwhgkr", 152 | "align": "start" 153 | }]}, 154 | {"children": [{ 155 | "id": "rod481xbkj", 156 | "align": "start" 157 | }]}, 158 | {"children": [ 159 | { 160 | "id": "0tzlkofnmg", 161 | "align": "end" 162 | }, 163 | { 164 | "id": "z5zrsxonz5", 165 | "align": "end" 166 | } 167 | ]}, 168 | {"children": [{ 169 | "id": "760t0xqrle", 170 | "align": "start" 171 | }]} 172 | ] 173 | }], 174 | "key": "jzkjz6lb90", 175 | "height": 268.375, 176 | "isDeprecated": false, 177 | "rightColumn": 32, 178 | "detachFromLayout": true, 179 | "dynamicHeight": "AUTO_HEIGHT", 180 | "widgetId": "iehkulh0us", 181 | "canOutsideClickClose": true, 182 | "canEscapeKeyClose": true, 183 | "version": 2, 184 | "parentId": "0", 185 | "tags": ["Layout"], 186 | "renderMode": "CANVAS", 187 | "isLoading": false, 188 | "mobileTopRow": 0, 189 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 190 | "mobileLeftColumn": 0, 191 | "maxDynamicHeight": 9000, 192 | "width": 456, 193 | "alignment": "center", 194 | "minDynamicHeight": 8 195 | } -------------------------------------------------------------------------------- /pages/Home/widgets/Contact_Us/Contact_Us.json: -------------------------------------------------------------------------------- 1 | { 2 | "boxShadow": "none", 3 | "mobileBottomRow": 0, 4 | "widgetName": "Contact_Us", 5 | "widthInPercentage": 0, 6 | "isCanvas": true, 7 | "displayName": "Modal", 8 | "iconSVG": "/static/media/icon.b374721fa8e1aeab7cf326c2d865506f.svg", 9 | "searchTags": [ 10 | "dialog", 11 | "popup", 12 | "notification" 13 | ], 14 | "topRow": 164.6328125, 15 | "bottomRow": 209.0328125, 16 | "parentRowSpace": 1, 17 | "type": "MODAL_WIDGET", 18 | "hideCard": false, 19 | "shouldScrollContents": true, 20 | "mobileRightColumn": 0, 21 | "animateLoading": true, 22 | "parentColumnSpace": 1, 23 | "leftColumn": 32, 24 | "dynamicBindingPathList": [{"key": "borderRadius"}], 25 | "children": [{ 26 | "boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}", 27 | "mobileBottomRow": 0, 28 | "widgetName": "Canvas7", 29 | "displayName": "Canvas", 30 | "topRow": 0, 31 | "bottomRow": 440, 32 | "parentRowSpace": 1, 33 | "type": "CANVAS_WIDGET", 34 | "canExtend": true, 35 | "hideCard": true, 36 | "shouldScrollContents": false, 37 | "minHeight": 446.00000000000006, 38 | "mobileRightColumn": 64, 39 | "useAutoLayout": true, 40 | "parentColumnSpace": 1, 41 | "leftColumn": 0, 42 | "dynamicBindingPathList": [ 43 | {"key": "borderRadius"}, 44 | {"key": "boxShadow"} 45 | ], 46 | "positioning": "vertical", 47 | "isDisabled": false, 48 | "key": "2jset4odoc", 49 | "isDeprecated": false, 50 | "rightColumn": 64, 51 | "detachFromLayout": true, 52 | "dynamicHeight": "AUTO_HEIGHT", 53 | "widgetId": "frd0zdq61p", 54 | "minWidth": 450, 55 | "isVisible": true, 56 | "version": 1, 57 | "parentId": "b31ekfcs9k", 58 | "renderMode": "CANVAS", 59 | "isLoading": false, 60 | "mobileTopRow": 0, 61 | "layout": [{ 62 | "layout": [ 63 | { 64 | "layout": [ 65 | { 66 | "layout": [{ 67 | "widgetId": "4u0se7fw0g", 68 | "alignment": "start" 69 | }], 70 | "isPermanent": true, 71 | "allowedWidgetTypes": ["TEXT_WIDGET"], 72 | "layoutType": "WIDGET_ROW", 73 | "layoutStyle": { 74 | "minHeight": "40px", 75 | "flexGrow": 1 76 | }, 77 | "layoutId": "6fztueqkle", 78 | "isDropTarget": true 79 | }, 80 | { 81 | "layout": [{ 82 | "widgetId": "s6r98v6y51", 83 | "alignment": "start" 84 | }], 85 | "isPermanent": true, 86 | "allowedWidgetTypes": ["ICON_BUTTON_WIDGET"], 87 | "layoutType": "WIDGET_ROW", 88 | "layoutStyle": { 89 | "minHeight": "40px", 90 | "minWidth": "30px" 91 | }, 92 | "layoutId": "nujj9fcg2f", 93 | "isDropTarget": true 94 | } 95 | ], 96 | "isPermanent": true, 97 | "layoutType": "LAYOUT_ROW", 98 | "layoutStyle": {"minHeight": "40px"}, 99 | "layoutId": "lzatcjmhin" 100 | }, 101 | { 102 | "layout": [], 103 | "isPermanent": true, 104 | "layoutType": "ALIGNED_LAYOUT_COLUMN", 105 | "layoutStyle": { 106 | "minHeight": "40px", 107 | "width": "100%" 108 | }, 109 | "layoutId": "w9shvrl8o6", 110 | "isDropTarget": true 111 | }, 112 | { 113 | "layout": [ 114 | { 115 | "widgetId": "9qdozmfz6s", 116 | "alignment": "end" 117 | }, 118 | { 119 | "widgetId": "5gj5ijqrg3", 120 | "alignment": "end" 121 | } 122 | ], 123 | "isPermanent": true, 124 | "layoutType": "ALIGNED_WIDGET_ROW", 125 | "layoutStyle": {"minHeight": "40px"}, 126 | "layoutId": "8zzrp5m5ya", 127 | "isDropTarget": true 128 | } 129 | ], 130 | "isPermanent": true, 131 | "layoutType": "LAYOUT_COLUMN", 132 | "layoutId": "2o53pjw3yk" 133 | }], 134 | "responsiveBehavior": "fill", 135 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 136 | "mobileLeftColumn": 0, 137 | "maxDynamicHeight": 9000, 138 | "minDynamicHeight": 4, 139 | "flexLayers": [ 140 | {"children": [ 141 | { 142 | "id": "4u0se7fw0g", 143 | "align": "start" 144 | }, 145 | { 146 | "id": "s6r98v6y51", 147 | "align": "end" 148 | } 149 | ]}, 150 | {"children": [{ 151 | "id": "y8kpidztvr", 152 | "align": "start" 153 | }]}, 154 | {"children": [{ 155 | "id": "pjd13yedd3", 156 | "align": "start" 157 | }]}, 158 | {"children": [{ 159 | "id": "jm7wycnndg", 160 | "align": "start" 161 | }]}, 162 | {"children": [ 163 | { 164 | "id": "9qdozmfz6s", 165 | "align": "end" 166 | }, 167 | { 168 | "id": "5gj5ijqrg3", 169 | "align": "end" 170 | } 171 | ]} 172 | ] 173 | }], 174 | "key": "yla9gjyn31", 175 | "height": 446.00000000000006, 176 | "isDeprecated": false, 177 | "rightColumn": 32, 178 | "detachFromLayout": true, 179 | "dynamicHeight": "AUTO_HEIGHT", 180 | "widgetId": "b31ekfcs9k", 181 | "canOutsideClickClose": true, 182 | "canEscapeKeyClose": true, 183 | "version": 2, 184 | "parentId": "0", 185 | "tags": ["Layout"], 186 | "renderMode": "CANVAS", 187 | "isLoading": false, 188 | "mobileTopRow": 0, 189 | "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", 190 | "mobileLeftColumn": 0, 191 | "maxDynamicHeight": 9000, 192 | "width": 698, 193 | "alignment": "center", 194 | "minDynamicHeight": 8 195 | } --------------------------------------------------------------------------------