ApiLogicServer 14.4.0__py3-none-any.whl → 14.5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- api_logic_server_cli/add_cust/add_cust.py +269 -0
- api_logic_server_cli/api_logic_server.py +18 -238
- api_logic_server_cli/api_logic_server_info.yaml +3 -3
- api_logic_server_cli/cli.py +38 -28
- api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/api_logic_server_utils.py +47 -0
- api_logic_server_cli/create_from_model/dbml.py +113 -58
- api_logic_server_cli/create_from_model/ont_build.py +83 -60
- api_logic_server_cli/create_from_model/ont_create.py +2 -1
- api_logic_server_cli/database/basic_demo.sqlite +0 -0
- api_logic_server_cli/database/basic_demo.txt +1 -0
- api_logic_server_cli/database/basic_demo_wg.sqlite +0 -0
- api_logic_server_cli/manager.py +3 -2
- api_logic_server_cli/prototypes/base/.vscode/launch.json +3 -2
- api_logic_server_cli/prototypes/base/config/config.py +66 -11
- api_logic_server_cli/prototypes/base/config/default.env +7 -1
- api_logic_server_cli/prototypes/base/database/test_data/readme.md +2 -1
- api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py +5 -2
- api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py +68 -21
- api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md +19 -0
- api_logic_server_cli/prototypes/base/test/basic/server_test.py +1 -1
- api_logic_server_cli/prototypes/basic_demo/README.md +29 -52
- api_logic_server_cli/prototypes/basic_demo/customizations/api/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/mcp_discovery.py +139 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/openapi.py +92 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/config/default.env +13 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/config/server_setup.py +388 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/database/models.py +131 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/database/system/SAFRSBaseX.py +136 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/README_mcp.md +15 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_client_executor.py +350 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_schema.txt +47 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_server_discovery.json +9 -0
- api_logic_server_cli/prototypes/{nw_no_cust/integration/mcp → basic_demo/customizations/integration/openai_function}/3_executor_test_agent.py +20 -6
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/README_functon.md +201 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/ai_plugin.json +17 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/nw-swagger_3.json +1731 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/snippets.txt +5 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3 genai_demo_with_get.json +1731 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3.json +1782 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo.json +264 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo_with_update.json +1782 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py +79 -41
- api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py +11 -12
- api_logic_server_cli/prototypes/basic_demo/customizations/ui/admin/admin.yaml +166 -0
- api_logic_server_cli/prototypes/basic_demo/iteration/api/{customize_api.py → api_discovery/order_b2b.py} +17 -23
- api_logic_server_cli/prototypes/basic_demo/iteration/database/db.sqlite +0 -0
- api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py +6 -5
- api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py +4 -4
- api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py +69 -43
- api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml +125 -50
- api_logic_server_cli/prototypes/manager/README.md +4 -0
- api_logic_server_cli/prototypes/nw/logic/declare_logic.py +2 -2
- api_logic_server_cli/prototypes/nw_no_cust/.obsidian/app.json +1 -0
- api_logic_server_cli/prototypes/nw_no_cust/.obsidian/appearance.json +1 -0
- api_logic_server_cli/prototypes/nw_no_cust/.obsidian/core-plugins.json +31 -0
- api_logic_server_cli/prototypes/nw_no_cust/.obsidian/workspace.json +166 -0
- api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md +45 -26
- api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/openapi.py +130 -0
- api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/proper_update_def.json +71 -0
- api_logic_server_cli/prototypes/nw_no_cust/config/default.env +13 -0
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json +9725 -1180
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json +3 -6
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts +1 -1
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss +4 -0
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json +1 -1
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json +14 -12
- api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/date_template.html +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html +1 -1
- api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py +30 -13
- apilogicserver-14.5.3.dist-info/METADATA +168 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.3.dist-info}/RECORD +84 -61
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.3.dist-info}/WHEEL +1 -1
- api_logic_server_cli/prototypes/basic_demo/apply_customizations.ps1 +0 -17
- api_logic_server_cli/prototypes/basic_demo/apply_customizations.sh +0 -14
- api_logic_server_cli/prototypes/basic_demo/apply_iteration.ps1 +0 -20
- api_logic_server_cli/prototypes/basic_demo/apply_iteration.sh +0 -15
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/1_langchain_loader.py +0 -19
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/2_gpt_mcp_prompt.txt +0 -19
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/README.md +0 -17
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/curl.txt +0 -4
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/nw_swagger_3.yaml +0 -16660
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/run_executor.py +0 -23
- apilogicserver-14.4.0.dist-info/METADATA +0 -76
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.3.dist-info}/entry_points.txt +0 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.3.dist-info}/licenses/LICENSE +0 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.3.dist-info}/top_level.txt +0 -0
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
api_logic_server_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
api_logic_server_cli/api_logic_server.py,sha256=
|
|
3
|
-
api_logic_server_cli/api_logic_server_info.yaml,sha256=
|
|
4
|
-
api_logic_server_cli/cli.py,sha256
|
|
2
|
+
api_logic_server_cli/api_logic_server.py,sha256=MDpVrep3II9xFrADlAdbhN0nuGW2WYURxfzD78llVk4,103450
|
|
3
|
+
api_logic_server_cli/api_logic_server_info.yaml,sha256=ae2s1H47bWBmuYY5QuWLXIyhLGUoUR90HLRGjnWrxf0,127
|
|
4
|
+
api_logic_server_cli/cli.py,sha256=AT1cWszOygHWIbpxDoXFhaTeSai3Tf5SbGoXvN4h510,83134
|
|
5
5
|
api_logic_server_cli/cli_args_base.py,sha256=lr27KkOB7_WpZwTs7LgiK8LKDIHMKQkoZCTnE99BFxw,3280
|
|
6
6
|
api_logic_server_cli/cli_args_project.py,sha256=I5no_fGRV_ZsK3SuttVDAaQYI4Q5zCjx6LojGkM024w,4645
|
|
7
7
|
api_logic_server_cli/extended_builder.py,sha256=EhtXGAt_RrDR2tCtgvc2U82we7fr-F6pP-e6HS6dQWQ,13867
|
|
8
8
|
api_logic_server_cli/logging.yml,sha256=isWhKviFwJwYgjIUejfhUxcMli2zEbZeQbEvVhNk_4Y,1812
|
|
9
|
-
api_logic_server_cli/manager.py,sha256=
|
|
9
|
+
api_logic_server_cli/manager.py,sha256=ITvz4DXt3PAW5Z5wmeKOWKPBnWHl-E7c_tElrx6QADM,10867
|
|
10
|
+
api_logic_server_cli/add_cust/add_cust.py,sha256=aVadUVtKyNuWNbPjTcP1AEeavTQEVkZpOYyFBAGjjvw,13330
|
|
10
11
|
api_logic_server_cli/create_from_model/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
11
12
|
api_logic_server_cli/create_from_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
13
|
api_logic_server_cli/create_from_model/api_expose_api_models_creator.py,sha256=V-u3Hm404doztw66YuD2A043RCFmtw5QF5tMioC_1b0,7900
|
|
13
|
-
api_logic_server_cli/create_from_model/api_logic_server_utils.py,sha256=
|
|
14
|
+
api_logic_server_cli/create_from_model/api_logic_server_utils.py,sha256=64rPLahX-FUu_1AhZlpHf4ljjWnQsYP0g-Ikhjd5pO8,25863
|
|
14
15
|
api_logic_server_cli/create_from_model/create_db_from_model.py,sha256=2H7slGnk39XOSnvL7vxrg6Ewx4bxeBJBgLo8fcXHTB4,4382
|
|
15
|
-
api_logic_server_cli/create_from_model/dbml.py,sha256=
|
|
16
|
+
api_logic_server_cli/create_from_model/dbml.py,sha256=fuNWpoRXh1V9VznUM4gLO6Wrs4Ul5jnta7cXMzrdnzI,10971
|
|
16
17
|
api_logic_server_cli/create_from_model/meta_model.py,sha256=ERf7tSgnSJSeRMVyggkdg-lvORQZSbfK0KMpL63qSEY,5837
|
|
17
18
|
api_logic_server_cli/create_from_model/model_creation_services.py,sha256=B86ljgUR98H_dCaxqiw-flrbvc05-XXtkC5It2BSezs,41479
|
|
18
|
-
api_logic_server_cli/create_from_model/ont_build.py,sha256=
|
|
19
|
-
api_logic_server_cli/create_from_model/ont_create.py,sha256=
|
|
19
|
+
api_logic_server_cli/create_from_model/ont_build.py,sha256=5BcmM0xW-0vjr9J_u1o0_3joLfKhcLeDWP31dcy5dzI,67028
|
|
20
|
+
api_logic_server_cli/create_from_model/ont_create.py,sha256=BU3RDPHEgFkmhUsDsIeZQtks5fOa-mhVhzkeVAJ8PSk,16292
|
|
20
21
|
api_logic_server_cli/create_from_model/ui_admin_creator.py,sha256=j1hZuHn70c4NA7l0zXH_PbcwH79FQPgkZh1qF_6sLyU,38071
|
|
21
22
|
api_logic_server_cli/create_from_model/uri_info.py,sha256=WiDw7hRcidz9hasodQ6O2ZJnUMfhHeydueQ8HXzPXlc,2395
|
|
22
23
|
api_logic_server_cli/create_from_model/__pycache__/__init__.cpython-312.pyc,sha256=CsCx6kjrSUonIcVUGVJemwAdGUB8h4IF0cwnpTIU4C4,223
|
|
23
24
|
api_logic_server_cli/create_from_model/__pycache__/api_expose_api_models_creator.cpython-312.pyc,sha256=3wtCiVHOjOgIonZOgnCsF2p01zcXIapx1_Tq2LwzY6Q,6989
|
|
24
|
-
api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc,sha256=
|
|
25
|
+
api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc,sha256=oaOOqBJogGZdW5nVn93zqOY552sumaX5fGANDN42eCQ,26691
|
|
25
26
|
api_logic_server_cli/create_from_model/__pycache__/create_db_from_model.cpython-312.pyc,sha256=5eE8pIEa-OoUOk0xn_b78cCc9dSmxjTMn3HGJbxbFY4,4799
|
|
26
|
-
api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc,sha256=
|
|
27
|
+
api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc,sha256=8kXgynb1JC1EXsPhVIFTDwP70FyxN3GYiPV3Vgb-EzQ,11926
|
|
27
28
|
api_logic_server_cli/create_from_model/__pycache__/meta_model.cpython-312.pyc,sha256=BH5Cflj8YKf0CVkHpIZ_3eBbHXhwIWbwsrzM7DsEikE,7098
|
|
28
29
|
api_logic_server_cli/create_from_model/__pycache__/model_creation_services.cpython-312.pyc,sha256=_pJPTvkJL22Eu1BWM48VfXcyapD366OnXBqHGn-wtO0,36462
|
|
29
|
-
api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc,sha256=
|
|
30
|
-
api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc,sha256=
|
|
30
|
+
api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc,sha256=Hni6k7GidAkkz-YO2kvmQOMYdCdCWvGWxX3HIPjj1eE,75285
|
|
31
|
+
api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc,sha256=wfaUqOrOUmCWGJlwz0HtN-wBckqp8w1nh4SrW2WHUnM,16283
|
|
31
32
|
api_logic_server_cli/create_from_model/__pycache__/ui_admin_creator.cpython-312.pyc,sha256=7lvvAHZDgxZcQWdf9oY4I8wyWPNZAv2leuVMsYmaNWY,38389
|
|
32
33
|
api_logic_server_cli/create_from_model/__pycache__/uri_info.cpython-312.pyc,sha256=oXtt-zINPCIGtb1xpwtaHwUQPt4AYo8tkIlN0Fe5EkI,2718
|
|
33
34
|
api_logic_server_cli/create_from_model/safrs-react-admin-npm-build/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
@@ -442,7 +443,9 @@ api_logic_server_cli/database/allocation.sqlite,sha256=9bH3HKgagCnzNTrj7whysop7r
|
|
|
442
443
|
api_logic_server_cli/database/authentication-unused.sqlite,sha256=hA71uBnrh2PVQw9YLc-YbsXjpxr2VyvfE-OhF_ssE6w,45056
|
|
443
444
|
api_logic_server_cli/database/authentication_doc-unused.sqlite,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
445
|
api_logic_server_cli/database/authentication_doc_unused.sqlite,sha256=U1PFfI_P2fQ0O68AkYD5orgfbDIxJnh-jn8i2hUcLrg,53248
|
|
445
|
-
api_logic_server_cli/database/basic_demo.sqlite,sha256=
|
|
446
|
+
api_logic_server_cli/database/basic_demo.sqlite,sha256=v6heXI3w2A0zWWcNXLTe3IJb5-NnAMr2xaLJ42ANlMQ,20480
|
|
447
|
+
api_logic_server_cli/database/basic_demo.txt,sha256=5si_qDHcyaOasTFgPqK-f4q0VRY3GA2Z-2OUaZ_Xgzg,50
|
|
448
|
+
api_logic_server_cli/database/basic_demo_wg.sqlite,sha256=ywpzn3Q5k-XTcMkB4-6Pks9XUB2Y4c_KUbAxwC5EFMU,28672
|
|
446
449
|
api_logic_server_cli/database/classicmodels.sqlite,sha256=9ob7iBwVLf8D10_d0SlAEHTGeig3fErP8Y6_s47LilY,413696
|
|
447
450
|
api_logic_server_cli/database/customize_models.py,sha256=9QyFDo9mHo-VpwsVP-cXxU5BvBtgYtj7NhxvKEpGDjU,122
|
|
448
451
|
api_logic_server_cli/database/model_using_numeric.py,sha256=PDQqndxION4LIlH9-3J9Ozc0JKbXVaITqQI2sGULkW4,1812
|
|
@@ -525,7 +528,7 @@ api_logic_server_cli/prototypes/base/.idea/runConfigurations/Run_Behave.xml,sha2
|
|
|
525
528
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/Windows_Run_Behave.xml,sha256=TMkGY8PMDhcGGkDw_tC-QljbmXLGT66ubsmRbMmfzi0,1205
|
|
526
529
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/run___No_Security.xml,sha256=BBK0h04vSC_hVSi7dKm_8Mo201jGivZRbx4ruFcqAEo,1193
|
|
527
530
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/run_docker.xml,sha256=oDHdZ8WEGU1MoWEQHH3jBvbPZt4hGlodUq4IeXv68co,2444
|
|
528
|
-
api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=
|
|
531
|
+
api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=HoSDdjv9Gi_o32Q-MzvGEWTOzokE1D2FENUf1XQTWoc,11113
|
|
529
532
|
api_logic_server_cli/prototypes/base/.vscode/settings.json,sha256=vS3gt0PpFbZ3fdGeiVGaE4v9PyRydjrrdGWb27w9UUo,470
|
|
530
533
|
api_logic_server_cli/prototypes/base/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
534
|
api_logic_server_cli/prototypes/base/api/customize_api.py,sha256=-_eoaIukB4v1dF1TXTOqRRyU_nLbXXEhphI43GPtdoI,2236
|
|
@@ -546,8 +549,8 @@ api_logic_server_cli/prototypes/base/api/system/opt_locking/opt_locking.py,sha25
|
|
|
546
549
|
api_logic_server_cli/prototypes/base/api/system/opt_locking/readme.md,sha256=Ja_-d-mxHAvOFslu6jlu18HQ3CSFaaSvphHMm3YM-Z8,6760
|
|
547
550
|
api_logic_server_cli/prototypes/base/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
548
551
|
api_logic_server_cli/prototypes/base/config/activate_logicbank.py,sha256=IuDe3uWcbQBtBzLAXsN45sr91sUYvM5OO5ggEk_XnRA,2198
|
|
549
|
-
api_logic_server_cli/prototypes/base/config/config.py,sha256=
|
|
550
|
-
api_logic_server_cli/prototypes/base/config/default.env,sha256
|
|
552
|
+
api_logic_server_cli/prototypes/base/config/config.py,sha256=SMkt_SmMFfQ1g9a9wG0bZNM7yUsRANxFCz2EFWs-WeY,30879
|
|
553
|
+
api_logic_server_cli/prototypes/base/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
551
554
|
api_logic_server_cli/prototypes/base/config/logging-reduced.yml,sha256=N-BDIk0t5uAmw3Of_d_ueK4jx7pxNwlYbkiDd1wjRDs,2179
|
|
552
555
|
api_logic_server_cli/prototypes/base/config/logging.yml,sha256=qMPyWipCWukb2qFyf18E9QCgGirob9jNDcx64PNqAdI,2330
|
|
553
556
|
api_logic_server_cli/prototypes/base/config/mypy.ini,sha256=2jL3ZtXg9SmJZu6zVQS_hmvO8wyVF1a1JWcVZplXLEk,568
|
|
@@ -566,7 +569,7 @@ api_logic_server_cli/prototypes/base/database/database_discovery/auto_discovery.
|
|
|
566
569
|
api_logic_server_cli/prototypes/base/database/db_debug/db_debug.py,sha256=ctcwksnM89597LUAme5Sn044r-xgRh47wSSe3MioPH4,3259
|
|
567
570
|
api_logic_server_cli/prototypes/base/database/system/SAFRSBaseX.py,sha256=p8C7AF9r9a_oeO1GcltUqR6YSTbcevbWVm3vhfTT1h0,2540
|
|
568
571
|
api_logic_server_cli/prototypes/base/database/test_data/alp_init.py,sha256=C7yqHB7KoOgwvzRsI3DVk9O_QHPu4SYioChv0Jz5xXY,1203
|
|
569
|
-
api_logic_server_cli/prototypes/base/database/test_data/readme.md,sha256=
|
|
572
|
+
api_logic_server_cli/prototypes/base/database/test_data/readme.md,sha256=IDKVMagnjobf5IigYCkQkUMM_iLvBdhK9grMNImSOKg,694
|
|
570
573
|
api_logic_server_cli/prototypes/base/database/test_data/response2code.py,sha256=PTeAXHU-r6r0EBknSGXnbkdySAAzch_3gOuRlyUyVF8,4414
|
|
571
574
|
api_logic_server_cli/prototypes/base/database/test_data/test_data_preamble.py,sha256=zmGdhH-Lm_BLeTkDSAb_7jQd4OD10LivzEOisdHT_fU,2892
|
|
572
575
|
api_logic_server_cli/prototypes/base/devops/readme-devops.md,sha256=KxoCpgjKN3U8GZ48VF1yH2hF_i2kC7QViZacgP4iN8s,1340
|
|
@@ -622,11 +625,11 @@ api_logic_server_cli/prototypes/base/docs/logic_suggestions/readme_logic_suggest
|
|
|
622
625
|
api_logic_server_cli/prototypes/base/docs/training/logic_bank_api.prompt,sha256=3zZu_AQLPskFzs_UL49-lk8Z6ck7YhQnj8wlz30Ib1k,14606
|
|
623
626
|
api_logic_server_cli/prototypes/base/docs/training/logic_example.py,sha256=yAot6uHy1gu94ufeYDx3f0iJ1_czsDywSAdm_yu4E2o,1325
|
|
624
627
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_consumer.py,sha256=2DOsFpYnsJ71gZzzfJweEmL-i99uCtEFU0hVwIKFGMw,1516
|
|
625
|
-
api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=
|
|
628
|
+
api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=g0nMAVfz1Y0iKJbbXfvRpdf-QUmyB4uUGZ6lyaVoXag,4470
|
|
626
629
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_readme.md,sha256=MlwykHWM2w41KzWh4vPuTnIodR8f-BQzrWpV4P1hrsI,161
|
|
627
630
|
api_logic_server_cli/prototypes/base/integration/n8n/N8N_WebHook_from_ApiLogicServer.json,sha256=s9JuoF9gLiuNZAD0dTVdnwQpORQHe0TseyPNVDe048w,10606
|
|
628
|
-
api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py,sha256=
|
|
629
|
-
api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md,sha256=
|
|
631
|
+
api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py,sha256=LuMec7HNwjaCsyMQSTTRpx9tW6l3OiV1StWrnahJBPA,7314
|
|
632
|
+
api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md,sha256=8RisYrm8ORUbtu-Duis19DJTBMGW32LymWYZN9A0pF0,3130
|
|
630
633
|
api_logic_server_cli/prototypes/base/integration/row_dict_maps/row_dict_maps_readme.md,sha256=5tOPwErjkcCQONrNcaGsttEwybxCIq-5j45dkOcDh1Q,206
|
|
631
634
|
api_logic_server_cli/prototypes/base/integration/system/FlaskKafka.py,sha256=QK5In9vuYbng6vPpUfDQsQ7ECD5lCkLYrZcgNy7U0-s,3352
|
|
632
635
|
api_logic_server_cli/prototypes/base/integration/system/RowDictMapper.py,sha256=DSdmeAQZZ_wUWHHiSS_6ZgeTKIuEycNlgX140l3fnSE,19986
|
|
@@ -656,7 +659,7 @@ api_logic_server_cli/prototypes/base/test/api_logic_server_behave/logs/behave.lo
|
|
|
656
659
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Intro micro.md,sha256=vWXV3FPIHirQrxFQg7DpQhtrrYeay0xjGNL3FmklB2I,147
|
|
657
660
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Intro.md,sha256=UW_vCd4k2LwKPO4d9pXTsbvLPrXg7S42tbywVJlAbFU,3732
|
|
658
661
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Sample.md,sha256=wVNGwhF3GhVVRv7YJLjqUd2WsjFZD_IpIzRZN3xEgkI,91494
|
|
659
|
-
api_logic_server_cli/prototypes/base/test/basic/server_test.py,sha256=
|
|
662
|
+
api_logic_server_cli/prototypes/base/test/basic/server_test.py,sha256=mmFF-TKEbUyMU1QfcDDNGu9sULD9nclnp-tyzNv9kEo,757
|
|
660
663
|
api_logic_server_cli/prototypes/base/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
664
|
api_logic_server_cli/prototypes/base/ui/admin/admin_loader.py,sha256=pg_5mcIkU_I57Mx368xXH4US77UXjdiTPnun6HOicHo,10322
|
|
662
665
|
api_logic_server_cli/prototypes/base/ui/admin/authentication_admin.yaml,sha256=Y2eVLzaV8Je6QRj2Dn2AM0FxN0oMjz6QdtZ4UAVsaNk,2261
|
|
@@ -686,21 +689,41 @@ api_logic_server_cli/prototypes/base/venv_setup/requirements-no-cli.txt,sha256=s
|
|
|
686
689
|
api_logic_server_cli/prototypes/base/venv_setup/venv-linux.sh,sha256=FDIxVyZ50CgLVLrAW942Kxnkv1n4WLR2UerzUnuhPwM,900
|
|
687
690
|
api_logic_server_cli/prototypes/base/venv_setup/venv.ps1,sha256=_-LfKkLw5HOkZsF59BGCqM9Zsk3n1oDIyDb4emy0O08,698
|
|
688
691
|
api_logic_server_cli/prototypes/base/venv_setup/venv.sh,sha256=aWX9fa8fe6aO9ifBIZEgGY5UGh4I0arOoCwBzDsxgU8,893
|
|
689
|
-
api_logic_server_cli/prototypes/basic_demo/README.md,sha256=
|
|
690
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
691
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
692
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
693
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
692
|
+
api_logic_server_cli/prototypes/basic_demo/README.md,sha256=COAWgXJGu0Xn6BHTeLyn9I39xcYHCKBslix7L2Xrodw,13487
|
|
693
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/.DS_Store,sha256=6F7pphfwiMhILhl_J6yVhDZFYXmar5V92iLCzSkfnyA,6148
|
|
694
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/mcp_discovery.py,sha256=C_uOn3QlFVF2OYRs2oAQEpCnjUWpZ9J8WKJUClnXIcw,5589
|
|
695
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/openapi.py,sha256=kLQ7Fn1J7tzuNJHBXF2AiwtzvQ-0JxJ6z-MfFryAtLk,3887
|
|
696
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
697
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/config/server_setup.py,sha256=bV48ou0jSEm2o5yhTVgms1w7rqU9Ccf_2yfZip3ivJk,15441
|
|
698
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite,sha256=VAhzjdz9_LTQNE6lVprZuliyHBGjQOggulM099cinSQ,24576
|
|
699
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/database/models.py,sha256=Hi4m_ivLPE3i2HNfC-rXEADE_toWBHcLelYAQBzV_oA,4499
|
|
700
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/database/system/SAFRSBaseX.py,sha256=8OBZT1rsTsLbCpgvE8AxC-GTOmXzaN7MwmjssNvOhlE,5284
|
|
701
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/.DS_Store,sha256=nfyHG63vXNerWIrSwk76tTujqqB25mRZZZ04VJmxlCQ,6148
|
|
702
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
703
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/README_mcp.md,sha256=ZXLgtvqQCcGouxFE_7pu6OA3Qu1Qm3Jh-gcQxuFKb_w,1216
|
|
704
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_client_executor.py,sha256=-2-IAJpn559uiuEjOq0In6jeZ_RzyAjK8vKNPHG3vEo,15328
|
|
705
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_schema.txt,sha256=qmov7e0NdYiQTCxNJU2xzxf9HnYeXFej-c8GSB-y6MM,1143
|
|
706
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_server_discovery.json,sha256=TUyInb67AWoGw7XFE9iDZxmM8UEID-ahQmdmzpF9AmQ,188
|
|
707
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/3_executor_test_agent.py,sha256=vH-3wJvQE99LDt9ID3wWtVw1EOv8yJJNipPGgYINAus,1251
|
|
708
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/README_functon.md,sha256=h-GPxsEy3wUnX4IcGzH8faBNrDvdV71btmhYq6J6zkY,6639
|
|
709
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/ai_plugin.json,sha256=-TcpPnKT6OESE4U97Sah9tCjaqMOlWY5fnKtjGO7vYM,561
|
|
710
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/nw-swagger_3.json,sha256=nYMUuLic6x3YaymUXDCevM-XeZ5DjnlgNFm0uXYNHkU,51728
|
|
711
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/snippets.txt,sha256=mUHFRZlXLOO8VVeVmFeZTcdetzsiKFW2ueIGIM0EcXk,132
|
|
712
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3 genai_demo_with_get.json,sha256=qKiO5OwwMrFflYi-_m5Iuo6HgvV7Dt3oooRJ9bpMwIg,51695
|
|
713
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3.json,sha256=arGkv02-QYkGp20l3o88kijV4XOdMi2HsxraVWhGd54,49478
|
|
714
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo.json,sha256=EnHZqaqlcSiAeLXpX3c3L_PCQcWCPdD3eKiEwzDU-0g,6024
|
|
715
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo_with_update.json,sha256=arGkv02-QYkGp20l3o88kijV4XOdMi2HsxraVWhGd54,49478
|
|
694
716
|
api_logic_server_cli/prototypes/basic_demo/customizations/logic/cocktail-napkin.jpg,sha256=5rNSy6wvcWSHPJQZqkf2DHs19QLWiyqMBNwxGqjstZU,133075
|
|
695
|
-
api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py,sha256
|
|
696
|
-
api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py,sha256=
|
|
697
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
698
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/
|
|
717
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py,sha256=ZbYzcIMXoZV3dsofZoWibsz5iSUtk-cPHZnZT7if4fg,5348
|
|
718
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py,sha256=gbdH29cPY656lgROPm_w20Q-g6AhlIMES3wiIrqBTdk,2439
|
|
719
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/ui/admin/admin.yaml,sha256=DWU-kbGAMbI1NBeK4MIgwGg7DRRNVDNr1vezWDzHoFk,3425
|
|
720
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/api/api_discovery/order_b2b.py,sha256=hg9Bsz0_t-RjO9rFcW-YH3y26kq4IY5dd9FfVoYxB4w,3176
|
|
721
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/database/db.sqlite,sha256=up0LBGiq9HiJIHD7eldIi1wRXC3rNYl6nQ98b_1RfEc,24576
|
|
699
722
|
api_logic_server_cli/prototypes/basic_demo/iteration/docs/er_diagram.png,sha256=-3aSv9ay7XeFqGU-cygRz5T5eYhY627BYmA6GXdUYH0,161072
|
|
700
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py,sha256=
|
|
701
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py,sha256=
|
|
702
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py,sha256=
|
|
703
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml,sha256=
|
|
723
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py,sha256=MGNSSOpqfHPaK8Yjm-h_x8ki-Uu_yU73C1l8ZXRipCo,1282
|
|
724
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py,sha256=pzrK57C1ppUUcSBVNICXGujsf9p1ZTRq0bpKacgcrV0,1213
|
|
725
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py,sha256=Jnqt0j2Yu8ev1Pi9T3rogumuGn2sR4Q4QyWeUIunG28,6501
|
|
726
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml,sha256=zN1dtWgBYKqY2D7v173CGUs9n0T4-GjHmDYk0XJ4uvE,4220
|
|
704
727
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-azure/docker-compose-dev-azure.yml,sha256=5qrlCzViJcYZ9uhWGBCJmnexi7bwQaYzQKMqGCnRzS0,1389
|
|
705
728
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-local/docker-compose-dev-local.yml,sha256=WJu3CKusT1wju6CubOKi6T1pW3pbE8JrZraGTpC6HTY,1439
|
|
706
729
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-local-nginx/docker-compose-dev-local-nginx.yml,sha256=QgsdxPfRYNUco0DcXZWo5_9FgDzrCmnWFoDjkrws5XU,2456
|
|
@@ -737,7 +760,7 @@ api_logic_server_cli/prototypes/genai_demo/logic/logic_discovery/auto_discovery.
|
|
|
737
760
|
api_logic_server_cli/prototypes/genai_demo/security/declare_security.py,sha256=L3AL1bgdqIWQxdkJZcFVDOQ0XRpmeLAKqwlAYChFWKo,2108
|
|
738
761
|
api_logic_server_cli/prototypes/genai_demo/ui/admin/admin.yaml,sha256=vMpr6to6g-h9gSuhxfpTeDMw5_R_eUKbV7qXzMEvIyk,3446
|
|
739
762
|
api_logic_server_cli/prototypes/manager/.gitignore,sha256=xfAjNQHokbo6GuN1ghx-eml8tQIzwUczLC_YVzElndI,195
|
|
740
|
-
api_logic_server_cli/prototypes/manager/README.md,sha256=
|
|
763
|
+
api_logic_server_cli/prototypes/manager/README.md,sha256=Z5lIaqu27J_pwX40fZdw3sIBwgbH3H6RegIMvJnZoKc,23265
|
|
741
764
|
api_logic_server_cli/prototypes/manager/run_sample.sh,sha256=eRA-p_Snr7Pwk14wUw5mja2usEcjAKisHVhHMeSaQ68,781
|
|
742
765
|
api_logic_server_cli/prototypes/manager/run_web_genai.sh,sha256=sgjB3vKhkao93Ny3VN0AQ-wonvdBcBIT3rTbyNTMoG8,136
|
|
743
766
|
api_logic_server_cli/prototypes/manager/settings.txt,sha256=_jjL30jomIMxG21edDfrXYRT9Zfgr_0EdUWvcEUOnFQ,368
|
|
@@ -5714,7 +5737,7 @@ api_logic_server_cli/prototypes/nw/integration/row_dict_maps/Customer_Orders.py,
|
|
|
5714
5737
|
api_logic_server_cli/prototypes/nw/integration/row_dict_maps/OrderB2B.py,sha256=NIz7XzuCLZK8JMqEZYfkJM5MOW1OU-NwBJheGgTrmkM,1392
|
|
5715
5738
|
api_logic_server_cli/prototypes/nw/integration/row_dict_maps/OrderById.py,sha256=2i2_jtq_o5vCThQq8fLLHy6WlcTPFb6aVO6YXdvoyrs,1102
|
|
5716
5739
|
api_logic_server_cli/prototypes/nw/integration/row_dict_maps/OrderShipping.py,sha256=K0K9ZDQ4kI_Kuw5_-Oby1oXlzgdb6PIluoYOtqm0axg,1438
|
|
5717
|
-
api_logic_server_cli/prototypes/nw/logic/declare_logic.py,sha256=
|
|
5740
|
+
api_logic_server_cli/prototypes/nw/logic/declare_logic.py,sha256=UQuUBBYNfHz-FhEqB00FevGQnL8wYwRoqeucASP9Twg,15803
|
|
5718
5741
|
api_logic_server_cli/prototypes/nw/logic/logic_discovery/integration.py,sha256=Hfm5wNI0aD9un3-lsB2hp4Rh3l3NM68NIIZ5hkQeQ5E,4101
|
|
5719
5742
|
api_logic_server_cli/prototypes/nw/logic/logic_discovery/simple_constraints.py,sha256=RxvO6AVmS9xoMGzWZ89HVE8kU22_qnNDPLxn3BZqAIw,1279
|
|
5720
5743
|
api_logic_server_cli/prototypes/nw/logic/logic_discovery/workflow_integration.pyZZ,sha256=XQacPVIKDKdYHgSaQ8IHp__DI2tZyNBr9qokEc6j0ws,2425
|
|
@@ -5774,7 +5797,14 @@ api_logic_server_cli/prototypes/nw/ui/images/Employee/king.jpg,sha256=wobxZZgqGm
|
|
|
5774
5797
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/leverling.jpg,sha256=w02cBPLXEIg3YJnjx2oJ--4semxQemnqwj-Gk9uV_2g,3750
|
|
5775
5798
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/peacock.jpg,sha256=UIfxEKOKruPKNW0w17bMebIaUsa1nD2vSVfFTk7uaCs,3862
|
|
5776
5799
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/suyama.jpg,sha256=bp0xCJ-8EqQp_B7uR4glL6fVGxVlS10d5IHLNdw7rcA,4375
|
|
5777
|
-
api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md,sha256=
|
|
5800
|
+
api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md,sha256=0reZHh31_29OiDoq2YjgcZBh7bFNF60TEjVG-cUzoZ8,16724
|
|
5801
|
+
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/app.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
5802
|
+
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/appearance.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
5803
|
+
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/core-plugins.json,sha256=-gH_6-0rhC1vn834F9R2EUN5BDBQ29fKnMrmjRTLlwo,658
|
|
5804
|
+
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/workspace.json,sha256=PAWIsWV7kHmW5geXxnwuvdSV4R67O9W3j9shZGnxEmA,4244
|
|
5805
|
+
api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/openapi.py,sha256=Un9qQvRCcuotyBi4WVWuXUcQhyvuYX-Zv1QHnAMvBhc,5557
|
|
5806
|
+
api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/proper_update_def.json,sha256=3wHSQ-uo3Qf0WVVMT3gA59B7OyOfQ4wPMHGzUTji3VM,1924
|
|
5807
|
+
api_logic_server_cli/prototypes/nw_no_cust/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
5778
5808
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/count_orders_by_category.prompt,sha256=a8IZYviDfssu2PH8VfQKFywRUcbLJYwvUWXe-otzBJc,49
|
|
5779
5809
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/request copy.json,sha256=NEl_qRHlmsMP8PfKndkEdW9mNxzxJGygnlzZdNZF1DY,17803
|
|
5780
5810
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/request.json,sha256=3Y2SOxypg-GRUR2C6iWss7lqiBTEftvVdQwbpC271Zk,18789
|
|
@@ -5782,13 +5812,6 @@ api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/response.json,sha256=4e
|
|
|
5782
5812
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/response.yaml,sha256=YulqKo9dUzmCiYQzguCAUeSYk-rCGAiA5xuWS29UqkI,2033
|
|
5783
5813
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/sales_by_category.prompt,sha256=iK_rWDSMt3Zmw9pKkCQqu4fysmKrUd4HmgHYEZzu_Sg,23
|
|
5784
5814
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/sales_by_employee.prompt,sha256=5FlUw1pXYMVa27i45lbikZ9Br76OjegHU5rH_XOII0g,38
|
|
5785
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/1_langchain_loader.py,sha256=QfDgwIDWNF-wQxiGSj68rid7PUdJStoEnwn8-L-j94w,517
|
|
5786
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/2_gpt_mcp_prompt.txt,sha256=Tx9KWAgsLOyPSPnCI_wp-17vaFL9wGPGzmju4UJKH74,560
|
|
5787
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/3_executor_test_agent.py,sha256=XjWUOPGAZeLOtJavuCZkdspT0SXDsRPeeyMWOzkPejY,760
|
|
5788
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/README.md,sha256=C3QUpxOVr0m3iCdPM7BkNjViLYwRVQ0h6f_ZCoKfzDE,991
|
|
5789
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/run_executor.py,sha256=SI9j1UvUS6Kq3Q20DACR-2dfRUZ9JgKYblRU3fAY0dE,489
|
|
5790
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/curl.txt,sha256=0pBJEtLVhYwZUzkKxXIHoIdSDVf0H8UIhh86drOP-QE,173
|
|
5791
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/nw_swagger_3.yaml,sha256=dGTlpgsNgS1N2eOu2glBtwayUmAeqCuqV_ToZnH7Y_M,482190
|
|
5792
5815
|
api_logic_server_cli/prototypes/nw_no_cust/venv_setup/system_note.txt,sha256=axb89FhqhxWGgnowLLyPZHZ0iC2jNLorjmqnuq63mJU,46
|
|
5793
5816
|
api_logic_server_cli/prototypes/nw_pa/$rebuild_pa.txt,sha256=kOyxrKzkzVPUmCeeD_CmX5yYVWmP9TtyvTLp4oRjM4I,1340
|
|
5794
5817
|
api_logic_server_cli/prototypes/nw_pa/admin_customer_nw_pa.yaml,sha256=rVpswwM3dVjhO8649MAamUipfLuSubLh7OCdHjhlYlM,11896
|
|
@@ -5807,8 +5830,8 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/angular.json,sha256=yi89J5
|
|
|
5807
5830
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/docker-compose-ontimize.yml,sha256=gGi0bodFvlftdP1xrp0y0AKvFCtOdB-U5CdOK7a0SMI,1805
|
|
5808
5831
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/karma.conf.js,sha256=Q7cZOkcrjCTxX69D5MqQ3PI8eTP0nxV36fIDu_xGylM,1037
|
|
5809
5832
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/ngsw-config.json,sha256=glcgrz-2KB2haUlGFyjmobH1kKAq5ZWf1xoAOyOWJ9w,620
|
|
5810
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json,sha256=
|
|
5811
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json,sha256=
|
|
5833
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json,sha256=G7q3FYtAH9VX1p8fMIJvC9Ot7hnOur980ersbTXnEss,577163
|
|
5834
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json,sha256=nptz4uk0AI39NxWn3J35_y-CrCAjaOaiTfBLef-gkcM,2283
|
|
5812
5835
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.app.json,sha256=hyYKRbyu1xs_xaJGVOPu5jcEek2oP8DMIeKN5X6Yla0,272
|
|
5813
5836
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.json,sha256=gx_giKrzvilZmNVRkJ0LYQPBQCIgYbSIfQwQx5yXQbk,568
|
|
5814
5837
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.spec.json,sha256=vV38h43m3prBlu4Wm_e2ZSYh6eV1vZayMH6zeU8PTcM,270
|
|
@@ -5860,14 +5883,14 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/sett
|
|
|
5860
5883
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/settings.component.ts,sha256=La4OfNnHedak9c7nS7lzadA7dvRuM0TB7fX20VJ5ahY,1398
|
|
5861
5884
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/settings.module.ts,sha256=CclMXeRBIBsitq0w5uY4D7dPvJaPrCNL1_Mdr5_UTO0,458
|
|
5862
5885
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.menu.config.ts,sha256=LsrvmU0THsUk6oYNwg8ukiOC8cSUvzTnSSje5k0z6Wg,270
|
|
5863
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts,sha256=
|
|
5886
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts,sha256=9YA0Qw_G6ZLqhqIjQbJusWv-M6fTd62ghLFUTFh1Vds,37
|
|
5864
5887
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/constant.ts,sha256=DhVJv1k0l5_npoQsd7I4tayGnXNWewDrI7Y6_UEcnaM,93
|
|
5865
5888
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/shared.module.ts,sha256=5LIoHXVuhv82Muna3jjt5tZvsGRCwi4kT92jsw1VPP8,287
|
|
5866
5889
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5867
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss,sha256
|
|
5890
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss,sha256=Zyr00WhTiZ4FmY9y-iCxedQfHlqC6F4uzzlb5CCQ7e8,704
|
|
5868
5891
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/loader.css,sha256=bTXpkVzE1ZBk1Ve-6ANsXcWr0uDsP3lWflCfOvOWN9Y,3946
|
|
5869
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json,sha256=
|
|
5870
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json,sha256=
|
|
5892
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json,sha256=zOK1wt-e_UiLXL7PJcicZcWV4u9URPgEIiornsj3Zuo,854
|
|
5893
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json,sha256=dGtCBAplgzP-4dRbHjn_1WQrLlT8lgjFHCktuPJ7U98,963
|
|
5871
5894
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize128.png,sha256=C3SLMnvDsWGtryzeUpAsxC2YkojrGMaszk0tPFZTAMA,3332
|
|
5872
5895
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize16.png,sha256=VyNS2WGrO5JFyPzi1JSvxahGOTCS0u7GFHTvI8q6iu8,712
|
|
5873
5896
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize256.png,sha256=btad_2A3tQRexrRLSivU0rSswSLTqXDgdrFsUaT05l8,20116
|
|
@@ -5893,7 +5916,7 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/environments/environme
|
|
|
5893
5916
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/environments/environment.ts,sha256=hMAKX3vQ-7Oyi-IbCFs5vKMFbTi3g6lVZdwIgsXfJ6s,571
|
|
5894
5917
|
api_logic_server_cli/prototypes/ont_app/templates/app.menu.config.jinja,sha256=odc1PAyk4PVtXAZVViSIa49maDNUBOcXwLy2XaChc8Q,681
|
|
5895
5918
|
api_logic_server_cli/prototypes/ont_app/templates/app.module.jinja,sha256=5NPQvPY208HwyAXja_yDreonCzYFF8MlFaMNcv7l1I8,1782
|
|
5896
|
-
api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja,sha256=
|
|
5919
|
+
api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja,sha256=IZicfLkfvm9mqXdGwvQ7Kq3NHRaJlfGhw58F6Ftcn_M,1274
|
|
5897
5920
|
api_logic_server_cli/prototypes/ont_app/templates/app_menu_group.jinja,sha256=UyYTYNLHflY1ceY3RVHUYHsx1Mp227hzTSgm0aOQUro,203
|
|
5898
5921
|
api_logic_server_cli/prototypes/ont_app/templates/card.component.html,sha256=fQ_ZMQdOJNl_pBhPxDwsFypROYjkzcuDLgNMhdC4YAQ,47
|
|
5899
5922
|
api_logic_server_cli/prototypes/ont_app/templates/card.component.jinja,sha256=NCgTqJzGnq1lYkSK0CJ0gXb-6VI0Om-OcWSaLdvD9Co,381
|
|
@@ -5902,7 +5925,7 @@ api_logic_server_cli/prototypes/ont_app/templates/check_circle.html,sha256=WIeAJ
|
|
|
5902
5925
|
api_logic_server_cli/prototypes/ont_app/templates/combo-picker.html,sha256=8JitbFpVH-vLQTsbTTpCxpy4Lxmh1DoCj97bym_K1Ew,375
|
|
5903
5926
|
api_logic_server_cli/prototypes/ont_app/templates/component.scss,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5904
5927
|
api_logic_server_cli/prototypes/ont_app/templates/currency_template.html,sha256=_vyQ4ZTlt_Sv-CCZP445AarZCEkx4SjXLiEnucxzxlU,343
|
|
5905
|
-
api_logic_server_cli/prototypes/ont_app/templates/date_template.html,sha256=
|
|
5928
|
+
api_logic_server_cli/prototypes/ont_app/templates/date_template.html,sha256=La8Wu-nZn0OWT8D3qdsw0iL5gsF5kjIAyTndsyYeoto,201
|
|
5906
5929
|
api_logic_server_cli/prototypes/ont_app/templates/detail.scss,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5907
5930
|
api_logic_server_cli/prototypes/ont_app/templates/detail_component.jinja,sha256=V7sZhZgpsNy4TwaIiU7djBC9bQ893tHP43ikQsuiz4I,975
|
|
5908
5931
|
api_logic_server_cli/prototypes/ont_app/templates/detail_route_template.jinja,sha256=yQDDoLyk1ZlZmKT7ejceUouotsKM9t611c10VIC1GBg,264
|
|
@@ -5953,9 +5976,9 @@ api_logic_server_cli/prototypes/ont_app/templates/table_real_template.html,sha25
|
|
|
5953
5976
|
api_logic_server_cli/prototypes/ont_app/templates/table_text_template.html,sha256=imFQ1Vl_1y6JA6vVTlwDJAG7JuoHhFfVBA4nnGrXw_0,156
|
|
5954
5977
|
api_logic_server_cli/prototypes/ont_app/templates/table_textarea_template.html,sha256=xueM7w4abNnr4XlVOo_DasBFjtzGnjNj0dOdjFvun5c,120
|
|
5955
5978
|
api_logic_server_cli/prototypes/ont_app/templates/text_template.html,sha256=2D4genPRzZhze6tfRGtOP2DYKxrFtDM6EtSTdZDPt1o,161
|
|
5956
|
-
api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html,sha256=
|
|
5979
|
+
api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html,sha256=iqIZUq0Z9J3Yn0DW55Ky_2_jA4p_7NT4ZbKLQMPWaHk,134
|
|
5957
5980
|
api_logic_server_cli/prototypes/ont_app/templates/time_template.html,sha256=gVuyAEE91cqlt9qmeLvhviuvJ27vDyvXJxoRKhi0nuw,218
|
|
5958
|
-
api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html,sha256=
|
|
5981
|
+
api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html,sha256=diHBfBvHtzVVcALlgu_znIaY91VwIo2SnuocGJIAIWE,212
|
|
5959
5982
|
api_logic_server_cli/prototypes/ont_app/templates/tree_routing.jinja,sha256=c4O7LL3iL6308XnrJRZP6g5kTenBTKsotSujtyd9oqQ,1111
|
|
5960
5983
|
api_logic_server_cli/prototypes/oracle/database/db_debug/oracle_db_debug.py,sha256=y9DG5toVWuSrlAUHuKyFNs5DFtKayf--OyKMGLsbOEQ,3244
|
|
5961
5984
|
api_logic_server_cli/prototypes/postgres/devops/docker-compose-dev-azure/docker-compose-dev-azure.yml,sha256=U8wwxQU77YUu_TfUN2Nf3T0WKLT1ehvw60kcKhi_b30,1193
|
|
@@ -5969,7 +5992,7 @@ api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_items.sqlit
|
|
|
5969
5992
|
api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_models.py,sha256=EBu8nJt9bg-QJN1GG0eP4evsJeU7hvoOU8Aby17q1no,5567
|
|
5970
5993
|
api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_models.sqlite,sha256=xVXgtMoEsivbm0BrrMgsSh5t6V-3EKDRvHp0SobgmSk,20480
|
|
5971
5994
|
api_logic_server_cli/prototypes/sample_ai/logic/cocktail-napkin.jpg,sha256=5rNSy6wvcWSHPJQZqkf2DHs19QLWiyqMBNwxGqjstZU,133075
|
|
5972
|
-
api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py,sha256=
|
|
5995
|
+
api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py,sha256=PKO10DBQwqr_EILraeR4YIkWKk6JwoaAZ8MnkNZ4dpc,4199
|
|
5973
5996
|
api_logic_server_cli/prototypes/sample_ai/security/declare_security.py,sha256=L3AL1bgdqIWQxdkJZcFVDOQ0XRpmeLAKqwlAYChFWKo,2108
|
|
5974
5997
|
api_logic_server_cli/prototypes/sample_ai_iteration/api/customize_api.py,sha256=Pbqwj0FcLIOHEaiBPOpTBFGVOniAnaabB9-x0OvT4sI,7402
|
|
5975
5998
|
api_logic_server_cli/prototypes/sample_ai_iteration/database/db.sqlite,sha256=Fb5yOHnS_u5QNS6wAohXup26M6at_QVknX04plwuPQM,24576
|
|
@@ -6069,9 +6092,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
|
|
|
6069
6092
|
api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
|
|
6070
6093
|
api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
|
|
6071
6094
|
api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
|
|
6072
|
-
apilogicserver-14.
|
|
6073
|
-
apilogicserver-14.
|
|
6074
|
-
apilogicserver-14.
|
|
6075
|
-
apilogicserver-14.
|
|
6076
|
-
apilogicserver-14.
|
|
6077
|
-
apilogicserver-14.
|
|
6095
|
+
apilogicserver-14.5.3.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
|
|
6096
|
+
apilogicserver-14.5.3.dist-info/METADATA,sha256=4qOWJhc-99yDNepZGK9-ca-1PBQwTBag6IQbkyEc8Ho,6524
|
|
6097
|
+
apilogicserver-14.5.3.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
6098
|
+
apilogicserver-14.5.3.dist-info/entry_points.txt,sha256=KiLloZJ3c_RW-nIDqBtoE0WEsQTnZ3dELwHLWi23LMA,103
|
|
6099
|
+
apilogicserver-14.5.3.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
|
|
6100
|
+
apilogicserver-14.5.3.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
Write-Output " "
|
|
2
|
-
Write-Output "Simulate customizations"
|
|
3
|
-
Write-Output " "
|
|
4
|
-
|
|
5
|
-
$Ready= Read-Host -Prompt "Stop Server, and press RETURN to apply customizations, or Ctl-C > "
|
|
6
|
-
|
|
7
|
-
Set-PSDebug -Trace 1
|
|
8
|
-
|
|
9
|
-
ApiLogicServer add-auth --project_name=. --db_url=auth
|
|
10
|
-
|
|
11
|
-
cp -r -Force customizations/* .
|
|
12
|
-
|
|
13
|
-
Set-PSDebug -Trace 0
|
|
14
|
-
Write-Output " "
|
|
15
|
-
Write-Output "Customizations applied"
|
|
16
|
-
Write-Output " "
|
|
17
|
-
Write-Output " "
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
echo "\n Simulate customizations\n"
|
|
4
|
-
|
|
5
|
-
read -p "Stop Server, and press RETURN to apply customizations, or Ctl-C $1> "
|
|
6
|
-
|
|
7
|
-
set -x
|
|
8
|
-
|
|
9
|
-
ApiLogicServer add-auth --project_name=. --db_url=auth
|
|
10
|
-
|
|
11
|
-
cp -r customizations/ .
|
|
12
|
-
set +x
|
|
13
|
-
|
|
14
|
-
echo "\n Customizations applied\n\n"
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Write-Output " "
|
|
2
|
-
Write-Output "Iteration"
|
|
3
|
-
Write-Output " "
|
|
4
|
-
|
|
5
|
-
$Ready = Read-Host -Prompt "Stop Server, and press RETURN to apply iteration, or Ctl-C > "
|
|
6
|
-
|
|
7
|
-
Set-PSDebug -Trace 1
|
|
8
|
-
|
|
9
|
-
# get database with Product.CarbonNeutral, rebuilt ui/admin/admin.yaml
|
|
10
|
-
cp -r -Force iteration/* .
|
|
11
|
-
|
|
12
|
-
cd .. # rebuild project from new database, preserving customizations
|
|
13
|
-
ApiLogicServer rebuild-from-database --project_name=basic_demo --db_url=sqlite:///basic_demo\database\db.sqlite
|
|
14
|
-
cd basic_demo
|
|
15
|
-
|
|
16
|
-
Set-PSDebug -Trace 0
|
|
17
|
-
Write-Output " "
|
|
18
|
-
Write-Output "\n Iteration applied"
|
|
19
|
-
Write-Output " "
|
|
20
|
-
Write-Output " "
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
echo "\nIteration\n"
|
|
2
|
-
|
|
3
|
-
read -p "Stop Server, and press RETURN to apply iteration, or Ctl-C $1> "
|
|
4
|
-
|
|
5
|
-
set -x
|
|
6
|
-
|
|
7
|
-
# get database with Product.CarbonNeutral, rebuilt ui/admin/admin.yaml
|
|
8
|
-
cp -r iteration/ .
|
|
9
|
-
|
|
10
|
-
cd .. # rebuild project from new database, preserving customizations
|
|
11
|
-
ApiLogicServer rebuild-from-database --project_name=basic_demo --db_url=sqlite:///basic_demo/database/db.sqlite
|
|
12
|
-
cd basic_demo
|
|
13
|
-
|
|
14
|
-
set +x
|
|
15
|
-
echo "\n Iteration applied"
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from langchain.tools.openapi.utils.openapi_utils import OpenAPISpec
|
|
2
|
-
from langchain.tools.openapi.tool import OpenAPITool
|
|
3
|
-
|
|
4
|
-
# Load your OpenAPI spec
|
|
5
|
-
spec = OpenAPISpec.from_file("nw_swagger_3.yaml")
|
|
6
|
-
|
|
7
|
-
# Create LangChain tool from a specific endpoint
|
|
8
|
-
customer_tool = OpenAPITool.from_openapi_spec(
|
|
9
|
-
spec=spec,
|
|
10
|
-
operation_id="getCustomer", # use actual operationId from your spec
|
|
11
|
-
verbose=True
|
|
12
|
-
)
|
|
13
|
-
|
|
14
|
-
# Run a test call
|
|
15
|
-
result = customer_tool.run({
|
|
16
|
-
"filter[Country]": "USA",
|
|
17
|
-
"page[limit]": 3
|
|
18
|
-
})
|
|
19
|
-
print(result)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
You are an AI planner that builds tool_context blocks for a JSON:API server using OpenAPI 3.0.
|
|
2
|
-
|
|
3
|
-
Use this OpenAPI file: [insert contents of nw_swagger_3.yaml]
|
|
4
|
-
|
|
5
|
-
Given the goal: "List all customers from Germany, limited to 2 results", generate a JSON MCP tool_context like this:
|
|
6
|
-
|
|
7
|
-
{
|
|
8
|
-
"tool": "json-api",
|
|
9
|
-
"method": "GET",
|
|
10
|
-
"url": "https://your-api-domain.com/Customer",
|
|
11
|
-
"query_params": {
|
|
12
|
-
"filter[Country]": "Germany",
|
|
13
|
-
"page[limit]": 2
|
|
14
|
-
},
|
|
15
|
-
"headers": {
|
|
16
|
-
"Accept": "application/vnd.api+json"
|
|
17
|
-
},
|
|
18
|
-
"expected_output": "List of customer records"
|
|
19
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
Model Context Protocol is a way for Chat agents to discover and call external servers, be they databases, APIs, file systems, etc, and call their services. And, for multiple such servers to be choreographed in a chain of calls.
|
|
2
|
-
|
|
3
|
-
For more information:
|
|
4
|
-
|
|
5
|
-
* [see here](https://modelcontextprotocol.io/introduction){:target="_blank" rel="noopener"}
|
|
6
|
-
* [and here](https://apilogicserver.github.io/Docs/Integration-MCP/){:target="_blank" rel="noopener"}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
> Status: Technology Exploration
|
|
10
|
-
|
|
11
|
-
## ChatGPT testing
|
|
12
|
-
|
|
13
|
-
In the Manager, open `samples/nw_sample_nocust`, and explore `integration/mcp`. This has been successfully used to invoke the server.
|
|
14
|
-
|
|
15
|
-
This is just an initial experiment, without automation such as creation of openAI version 3 from version 2. Many substantive issues need to be addressed, including but not limited to security, update, etc.
|
|
16
|
-
|
|
17
|
-
We welcome participation in this exploration. Please contact us via [discord](https://discord.gg/HcGxbBsgRF){:target="_blank" rel="noopener"}.
|