tinet-agent-cli 0.1.0.dev36__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.
Files changed (104) hide show
  1. taco/__init__.py +1 -0
  2. taco/agent_openapi/__init__.py +1 -0
  3. taco/agent_openapi/catalog.py +198 -0
  4. taco/agent_openapi/models.py +47 -0
  5. taco/agent_openapi/parameters.py +111 -0
  6. taco/agent_openapi/service.py +73 -0
  7. taco/aikb/__init__.py +4 -0
  8. taco/aikb/catalog.py +380 -0
  9. taco/aikb/executors.py +157 -0
  10. taco/aikb/file_input.py +55 -0
  11. taco/aikb/models.py +42 -0
  12. taco/aikb/parameters.py +135 -0
  13. taco/aikb/service.py +68 -0
  14. taco/assets/__init__.py +1 -0
  15. taco/assets/agent_openapi/catalog.json +14 -0
  16. taco/assets/agent_openapi/operations/conversation/list-conversations.json +67 -0
  17. taco/assets/agent_openapi/operations/message/list-conversation-messages.json +80 -0
  18. taco/assets/agent_openapi/operations/trace/list-message-traces.json +72 -0
  19. taco/assets/aikb/catalog.json +41 -0
  20. taco/assets/aikb/operations/conversation/chat-conversation-on-open.json +99 -0
  21. taco/assets/aikb/operations/directory/delete-directory.json +81 -0
  22. taco/assets/aikb/operations/directory/edit-directory.json +97 -0
  23. taco/assets/aikb/operations/directory/list-directory-tree.json +106 -0
  24. taco/assets/aikb/operations/directory/save-directory.json +109 -0
  25. taco/assets/aikb/operations/faq/create-faq.json +193 -0
  26. taco/assets/aikb/operations/faq/delete-faq.json +81 -0
  27. taco/assets/aikb/operations/faq/describe-faq.json +82 -0
  28. taco/assets/aikb/operations/faq/edit-faq.json +193 -0
  29. taco/assets/aikb/operations/faq/list-faqs.json +136 -0
  30. taco/assets/aikb/operations/file/create-file.json +145 -0
  31. taco/assets/aikb/operations/file/delete-files.json +110 -0
  32. taco/assets/aikb/operations/file/describe-file.json +82 -0
  33. taco/assets/aikb/operations/file/get-file-upload-url.json +154 -0
  34. taco/assets/aikb/operations/file/list-files.json +146 -0
  35. taco/assets/aikb/operations/media/describe-faq-media-url.json +98 -0
  36. taco/assets/aikb/operations/media/describe-file-media-url.json +90 -0
  37. taco/assets/aikb/operations/oss/signature-for-upload.json +85 -0
  38. taco/assets/aikb/operations/recycle-bin/list-recycled-items.json +151 -0
  39. taco/assets/aikb/operations/repository/describe-bot-repository.json +71 -0
  40. taco/assets/aikb/operations/repository/list-private-repositories.json +75 -0
  41. taco/assets/aikb/operations/repository/list-public-repositories.json +75 -0
  42. taco/assets/aikb/operations/search/search-knowledge-on-open.json +180 -0
  43. taco/assets/examples/README.md +3 -0
  44. taco/assets/examples/agent-basic.json +16 -0
  45. taco/assets/examples/agent-builtin-tool.json +28 -0
  46. taco/assets/examples/agent-workflow-tool.json +30 -0
  47. taco/assets/examples/chatflow-basic.json +24 -0
  48. taco/assets/examples/workflow-http.json +34 -0
  49. taco/assets/manifest.json +12 -0
  50. taco/assets/scenarios/README.md +3 -0
  51. taco/assets/scenarios/agent-basic.json +80 -0
  52. taco/assets/scenarios/agent-builtin-tool.json +116 -0
  53. taco/assets/scenarios/agent-workflow-tool.json +277 -0
  54. taco/assets/schemas/README.md +3 -0
  55. taco/assets/schemas/agent-tool.json +71 -0
  56. taco/assets/schemas/agent.json +199 -0
  57. taco/assets/schemas/chatflow.json +1048 -0
  58. taco/assets/schemas/workflow.http.json +1052 -0
  59. taco/assets/schemas/workflow.json +1052 -0
  60. taco/assets/skills/README.md +3 -0
  61. taco/assets/skills/taco/SKILL.md +68 -0
  62. taco/assets/skills/taco/manifest.json +10 -0
  63. taco/cli.py +127 -0
  64. taco/commands/__init__.py +1 -0
  65. taco/commands/agent.py +760 -0
  66. taco/commands/aikb.py +132 -0
  67. taco/commands/app.py +151 -0
  68. taco/commands/category.py +37 -0
  69. taco/commands/chatflow.py +183 -0
  70. taco/commands/credential.py +222 -0
  71. taco/commands/discovery.py +409 -0
  72. taco/commands/model.py +55 -0
  73. taco/commands/profile.py +124 -0
  74. taco/commands/tool.py +61 -0
  75. taco/commands/workflow.py +714 -0
  76. taco/core/__init__.py +1 -0
  77. taco/core/access_token_manager.py +98 -0
  78. taco/core/api_client.py +263 -0
  79. taco/core/assets.py +81 -0
  80. taco/core/config_store.py +209 -0
  81. taco/core/context.py +19 -0
  82. taco/core/developer_center_client.py +165 -0
  83. taco/core/errors.py +19 -0
  84. taco/core/file_lock.py +80 -0
  85. taco/core/http_headers.py +21 -0
  86. taco/core/openapi_signer.py +221 -0
  87. taco/core/output.py +72 -0
  88. taco/core/profile_manager.py +217 -0
  89. taco/core/profile_resolver.py +151 -0
  90. taco/core/secure_file.py +76 -0
  91. taco/release.py +363 -0
  92. taco/services/__init__.py +1 -0
  93. taco/services/agent_service.py +314 -0
  94. taco/services/app_service.py +153 -0
  95. taco/services/category_service.py +57 -0
  96. taco/services/model_service.py +117 -0
  97. taco/services/tool_service.py +482 -0
  98. taco/services/workflow_compiler.py +1665 -0
  99. taco/services/workflow_service.py +652 -0
  100. taco/services/workflow_tool_service.py +439 -0
  101. tinet_agent_cli-0.1.0.dev36.dist-info/METADATA +158 -0
  102. tinet_agent_cli-0.1.0.dev36.dist-info/RECORD +104 -0
  103. tinet_agent_cli-0.1.0.dev36.dist-info/WHEEL +4 -0
  104. tinet_agent_cli-0.1.0.dev36.dist-info/entry_points.txt +2 -0
@@ -0,0 +1,104 @@
1
+ taco/__init__.py,sha256=YXf6P1zZq4r0COJ44Im-13iVvTs3JttbyaK-k9iwnSI,28
2
+ taco/cli.py,sha256=4WNXO6LiSZxjhVHnR1cywobD1R3rvQcByx9AxEfbJGQ,3602
3
+ taco/release.py,sha256=EJ6h35zKWYjN5RReroSzyovibRWhY2vjspDayosoLCE,12484
4
+ taco/agent_openapi/__init__.py,sha256=4W6uqLykR2DjLrxsfS4nFwzg_mma660y9YnRpA8hUD8,51
5
+ taco/agent_openapi/catalog.py,sha256=nFHmmd2dKeIG4Jz5cEQB8csxWTKGJ2OnlnKsXed94nw,9650
6
+ taco/agent_openapi/models.py,sha256=3REzr9j3u6OAgXlvvsNnh4Pz0B9T4bG1f6IzNsQom6g,1150
7
+ taco/agent_openapi/parameters.py,sha256=p1Kx2OcdJ5qbiJemXeQDgdZYMvMjWh2f1zOe-n5apko,4455
8
+ taco/agent_openapi/service.py,sha256=KI4w-AlEEK2TjBfsabGc5vHjMDoGmEH2j--nwx4vEbE,2719
9
+ taco/aikb/__init__.py,sha256=s_VypT74dk64VFhi_HwBS8WuIsAD85HtULfk0ZHQ2e0,159
10
+ taco/aikb/catalog.py,sha256=yHpSyrfkxYlZqMJbsb1L_KVerm9uupGB7f2TMNrGY-4,17064
11
+ taco/aikb/executors.py,sha256=kB-JxIn5sZiIJApOI7XL1e09CxE1AtKuMK__wnyiWFA,5191
12
+ taco/aikb/file_input.py,sha256=eKZYwHX-DCS7tmYAZuaC2HeRkC0OpZt6PV8zeNAeMFs,1766
13
+ taco/aikb/models.py,sha256=prezU6oJqYdLRVJ59o0v3dCYQpBC69_xCOymmnkwwvM,1042
14
+ taco/aikb/parameters.py,sha256=8fQnFrsQMdk80BuNfsSVidaJd4KFhtu1IMQONMo0fG8,5211
15
+ taco/aikb/service.py,sha256=EsHCi6p9ibK-ZvSuwT0IsOpgGIwdgjfkJNi8nESEgj4,2554
16
+ taco/assets/__init__.py,sha256=Ktt6XE84FHXTZpxGG_NFq1TJkhxW3IcuISLIPNrWa-M,63
17
+ taco/assets/manifest.json,sha256=Of-uubLA9okfkFkX_RFykGLqKuuTsrkD3gKLY8yoKDA,180
18
+ taco/assets/agent_openapi/catalog.json,sha256=BKXISYXO2-6mnqvcPARa-F01DstKtFd7OvfOP8RY1YI,405
19
+ taco/assets/agent_openapi/operations/conversation/list-conversations.json,sha256=d7Nat84YQ4lUmHq326fmzu6J_iHz2Df6Jy2s21u2GOE,4555
20
+ taco/assets/agent_openapi/operations/message/list-conversation-messages.json,sha256=WRp2REaQJrasS0eC8B4X_lAhWXJ1xvtpxwKU618bmx0,5246
21
+ taco/assets/agent_openapi/operations/trace/list-message-traces.json,sha256=2KSypqKMkOOZNPyB84IuzPbqA20EsIIcEgZPVz0TEVQ,4915
22
+ taco/assets/aikb/catalog.json,sha256=nIiZ6rLnjAeLPfWbIU8untT9nuecN0TW_WLhf-qBYSw,1230
23
+ taco/assets/aikb/operations/conversation/chat-conversation-on-open.json,sha256=D7hi1a49Uac6SJTO6UNq0f3s521Zbvv0p-idTbw-M6Y,2388
24
+ taco/assets/aikb/operations/directory/delete-directory.json,sha256=L_iY4ns3TCZ1EzSNoPPkHT4JDfyRYRixAY-j-2Qayk8,1826
25
+ taco/assets/aikb/operations/directory/edit-directory.json,sha256=k6AJfIaP_7kHxMRdRfYNrs-qi7XGx34bX2ii68IgHjY,2365
26
+ taco/assets/aikb/operations/directory/list-directory-tree.json,sha256=0HN0rQV3gZKZvwAfYXsGK8EBTYg9zDdyv7apYUFfa-U,2604
27
+ taco/assets/aikb/operations/directory/save-directory.json,sha256=7kaRYE2y7h7MSKbnsvNiE9WX_yvPfC7DFWMXMmSH6rw,2610
28
+ taco/assets/aikb/operations/faq/create-faq.json,sha256=7kTvpWJ--tStTk-gcLR2rXXY-U2k3gP9LwpDzM5zZ3s,5243
29
+ taco/assets/aikb/operations/faq/delete-faq.json,sha256=w02zOuVT3_tS6SASh-VgsxIkaiFdlb696LilvjJK2SY,1746
30
+ taco/assets/aikb/operations/faq/describe-faq.json,sha256=F3uSA5QgywnmhdfA_353gy5pa_HIYPAxzw_3SuhL7XE,1831
31
+ taco/assets/aikb/operations/faq/edit-faq.json,sha256=cz34QQNjuwENd3AmBp8mbYf5wD91eCAEx_dNG9_oZ0A,5145
32
+ taco/assets/aikb/operations/faq/list-faqs.json,sha256=tFZTGU4UTXRL8FnFf_bnlVFF23d_lvOVZf_fPzKdr0M,3500
33
+ taco/assets/aikb/operations/file/create-file.json,sha256=t4CoD0cRHESfI82fFDqoZg5at9pzcov-g8qI0qNU_5E,3829
34
+ taco/assets/aikb/operations/file/delete-files.json,sha256=3r4r1VYkv2UJza30ygsnhnS17VRNAVqnWH3iXeC0Jv8,2612
35
+ taco/assets/aikb/operations/file/describe-file.json,sha256=oQSix7Zpm3_i1Iflh8LcvO5s5bg4c7JkI-ir1JlVn1A,1834
36
+ taco/assets/aikb/operations/file/get-file-upload-url.json,sha256=YebWthu5ou_e77tAk_O9YjM63kOu76kXZ-dtpXUEFUQ,3940
37
+ taco/assets/aikb/operations/file/list-files.json,sha256=3UaGlZZLxAJPBwWxrhe98HUoHm-Bz84bhLw79KrMpSg,3927
38
+ taco/assets/aikb/operations/media/describe-faq-media-url.json,sha256=BiHIOPGhIsL1Mv43YWPv2UQuhl41O1YvR4_kx1JxktI,2340
39
+ taco/assets/aikb/operations/media/describe-file-media-url.json,sha256=p909Inbx0FQif8OSqkzQfB3I8K8n9mDoPIGDrriqQso,2107
40
+ taco/assets/aikb/operations/oss/signature-for-upload.json,sha256=b34Hd3K2EIdt-KExNL4p5KqWvbBUPS9YxujLbDpUfkg,1996
41
+ taco/assets/aikb/operations/recycle-bin/list-recycled-items.json,sha256=8s2xm1WW3dSWccBJTA45BcszOo48kHGbexp24S5W9c4,3888
42
+ taco/assets/aikb/operations/repository/describe-bot-repository.json,sha256=tT5zaqIcr9_lM2v4X9xrpVUMDSu2TUYZu-d7Jf94Gqo,1703
43
+ taco/assets/aikb/operations/repository/list-private-repositories.json,sha256=RxcvQNhw0zzklX_cTe7qJe-oxqydGq7ZnW_NjRtzoLM,1827
44
+ taco/assets/aikb/operations/repository/list-public-repositories.json,sha256=_k0dXguNoWDklMb_uICYhe2PsE-mcEwhjZPWBzXhhGY,1823
45
+ taco/assets/aikb/operations/search/search-knowledge-on-open.json,sha256=CfqtepnRsXf9HBishC6RYNneHCvHoFONv3FrEe2ChyE,4743
46
+ taco/assets/examples/README.md,sha256=VKYvN9P18xXtfnXd3-hWdnPYdkLqOKBsW3kZeFG470s,65
47
+ taco/assets/examples/agent-basic.json,sha256=oXQnOy4E-H0jLBfEurRHKgZCPth4x1ikRgAO24hLRB0,407
48
+ taco/assets/examples/agent-builtin-tool.json,sha256=jFRMIpPTOSDuDxeF7LQAK0vmNoGS8WobVjCwEu4jxIg,980
49
+ taco/assets/examples/agent-workflow-tool.json,sha256=dVbLSF4bsgM7EOslE29T0Iqhnvdckw_k_ivt7foshGM,1270
50
+ taco/assets/examples/chatflow-basic.json,sha256=Sm5FsKZNMziUzK8SH5jkelK-FLLKjUkUdxdfJY3Rqkg,485
51
+ taco/assets/examples/workflow-http.json,sha256=gEIrFF9vNkqg5aha2tYomcvITFiRGHfvkyVyvll2Gps,715
52
+ taco/assets/scenarios/README.md,sha256=OSiEMf_mNE-cwcVzqni2PrHKi_w0gSh4OvYIsN-JM7I,76
53
+ taco/assets/scenarios/agent-basic.json,sha256=inYO89uAzaGvRK_moyNaIUOV95beMZtm_OYgwA4IfGQ,2990
54
+ taco/assets/scenarios/agent-builtin-tool.json,sha256=UjFRiA5ColD3VJHEzk2xXISv3kuYC3CL3_NbY-wnOPM,4342
55
+ taco/assets/scenarios/agent-workflow-tool.json,sha256=bLM0VZjfln0SgJn_YleTIfJcPBeBaANNmw5ifNVSePQ,13083
56
+ taco/assets/schemas/README.md,sha256=VSTifucAq7IEYSkwtZKIrjaAPaVR3LQhrq8mUQ2T_7c,69
57
+ taco/assets/schemas/agent-tool.json,sha256=GBemzBcxFNYr8CqO5NjpLI63iTglcEmnNQeumfzm73w,1809
58
+ taco/assets/schemas/agent.json,sha256=vZ15IOE2dixMdDGB7QCMNfsk-s--3QVlr7GR6bVjpYw,4146
59
+ taco/assets/schemas/chatflow.json,sha256=CiNSzjcN3C6hcRizme2EycwqeAIOwWEP0NLP6TqHz8w,23841
60
+ taco/assets/schemas/workflow.http.json,sha256=AAWkDJ6YYfTigBZmkbm3HUWVtTELiODPYzIl5ERII6E,23812
61
+ taco/assets/schemas/workflow.json,sha256=ZI7QdGQQMDLXr-dIzB3B1ci0LoBdRPKZ6PRZclqmqhI,23802
62
+ taco/assets/skills/README.md,sha256=lOYy8T-nuI7fAiIzMQhV59nSPUoofucv7A6WPy9H98k,71
63
+ taco/assets/skills/taco/SKILL.md,sha256=VF4OptEZFMfCuoQ8c92ycMU_4IM37dXA_VB5pbk3ygo,7360
64
+ taco/assets/skills/taco/manifest.json,sha256=Le7NqjMGjTLxViNJQuGkAWM94uF8J266VcOjhg37sFQ,169
65
+ taco/commands/__init__.py,sha256=XAfAJlvT-bFR0b5yXMoOIn2Is1jb6dcN6KtKxm2ORNM,32
66
+ taco/commands/agent.py,sha256=q8OYpULtR7ep0i6Meju6CklH6znx4oFlgVYbxeRO18o,26380
67
+ taco/commands/aikb.py,sha256=XR6CoXTak4Ux8MlMsDlbOgGHy1ZE9z2ORDlJjtG5SU0,4759
68
+ taco/commands/app.py,sha256=mFX4wAd-04r3W988N7wHc2YRMifFL4xMEDuZsVe6LF8,4826
69
+ taco/commands/category.py,sha256=vQp_nf9JtMAPb8cvi07tx210fej8TtMOE8Y_gZWeBo4,1218
70
+ taco/commands/chatflow.py,sha256=0qJ4zQS-sfj39c_2Z4ZP0lrRH6ucPjOHpveC7TfIvls,5634
71
+ taco/commands/credential.py,sha256=Y4hKUiMZFVGO8kyrVP8OyInheKmIpgtm5gInVb3jwnI,6623
72
+ taco/commands/discovery.py,sha256=J94PwH4Izbn9wXU4ovmVSzoXSjn3m4_PJ_VjOgVC-s8,13063
73
+ taco/commands/model.py,sha256=XwUWnZ7jKi_E0tpiK5W-8C5Eg3zbMZgtGhZ-yPGmhBE,1666
74
+ taco/commands/profile.py,sha256=pR-ZWv7WXoDHa3C2C4pRuc5Gf37NtlIsLYXMsB32UZw,4619
75
+ taco/commands/tool.py,sha256=LCkOrJEBw0QrJVaxyR45CbTy8rcnJipNHx0fv7Z2-7g,2012
76
+ taco/commands/workflow.py,sha256=5ivVEFTFpyIn_E5XEHT4xywVnXHDlvz9E0s5p2JvPI8,22153
77
+ taco/core/__init__.py,sha256=FGTmsbXWNN3oN4QqL-VV3NLC0L2hXBSI9x9cwv5oHXM,32
78
+ taco/core/access_token_manager.py,sha256=hWS85En1Cs4N8_c2SvQSL3XkpFILiA6O5MBpnuPrm0s,3525
79
+ taco/core/api_client.py,sha256=IPwPLiad0H75K_NcBOdv5YqRSqG9yl1BMOBg7KGbisE,8225
80
+ taco/core/assets.py,sha256=W3hLYOI7hLc7twsxcoBkMcqNFCQMGfllmYtAKLoVT08,2730
81
+ taco/core/config_store.py,sha256=y5dgBrlDaGIowYW2sHXwUJwVOoa9ZcmGOiQc-jNKm10,6933
82
+ taco/core/context.py,sha256=seYveKi_TUblSSGirDKKh47yb7yoZpO5YdplzUMOhII,387
83
+ taco/core/developer_center_client.py,sha256=FtjhD6N7FtUifam2e0-jqAOIS4HxV7QPhG0JkmlzwZ8,5235
84
+ taco/core/errors.py,sha256=cfedeA3mplOZRbLHrllUkKjcpOmtBOLfS_Zlr_0MlQg,447
85
+ taco/core/file_lock.py,sha256=3UY4G7CSNCBbqrNIWrDLZXYOb5d8MTLi136e-WMN1cs,2169
86
+ taco/core/http_headers.py,sha256=gIaLXNQEStlDQ1V3MrxeApJNQuhDl9WWVwsIquzWyo8,455
87
+ taco/core/openapi_signer.py,sha256=rdj6emQZeFsdgGazpQb-806vnrTuOlJyafdfpMEotdI,7126
88
+ taco/core/output.py,sha256=RINEaBqxyZB7kid5OKpks5hGrdnNgIvR2Ljc-CDU7SU,1903
89
+ taco/core/profile_manager.py,sha256=PXrGp3sqXnv2wIkYUMdOcwnqrQxHMBRfavFs3IYnDJA,7599
90
+ taco/core/profile_resolver.py,sha256=4aM1Z21TEo-w1lOfyPNtdNIN7wTkrUPQ3RgkgvYGGTQ,5295
91
+ taco/core/secure_file.py,sha256=LmHjRaMdKar9h7Z8mMv6Ei55251i2x2R2RGzx1B9ODk,2377
92
+ taco/services/__init__.py,sha256=SoDzQw2G6ZXJqoGyXs6dP0fOKnT6Xi-Qd4QH59yIYdU,34
93
+ taco/services/agent_service.py,sha256=b55jw-x5rnrKO3A38tKvjio8DYVAVzwlLNiKw-H4o78,10986
94
+ taco/services/app_service.py,sha256=UOfb9X97x8Nhc1MQxzKk5qWSSS9D0Xh3GDlhkgW-1uM,4661
95
+ taco/services/category_service.py,sha256=fK-zTE2p6Pvp_b9cOH1OKm5Ngr25BSI1hLKfzof6lgk,1814
96
+ taco/services/model_service.py,sha256=pk418OUZgwSowUC3nkIaAQEEunjGm9cxqdUcsa6Buw8,3818
97
+ taco/services/tool_service.py,sha256=SdwOZnUVuDP6DKQ8m5Hyqg71R80L-6AY9Z7jOWRmGA8,17030
98
+ taco/services/workflow_compiler.py,sha256=lbkgImkSs7mQlNt46FMj78zRrNp76aUaEyg1dA45oOc,56679
99
+ taco/services/workflow_service.py,sha256=ZJPmKBxvErW9LoC0Khpb-fOb58hE1dzJ-YMwOXJ4uJk,20619
100
+ taco/services/workflow_tool_service.py,sha256=wY1dE6r1Gq06QbJiOhB8sJ3g6fKWGE_bcFulVYtiw4E,14513
101
+ tinet_agent_cli-0.1.0.dev36.dist-info/METADATA,sha256=2oLvxHXlLufJa0yClfvuVdwtVa1DMJUMmjqhk4eHBw0,4372
102
+ tinet_agent_cli-0.1.0.dev36.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
103
+ tinet_agent_cli-0.1.0.dev36.dist-info/entry_points.txt,sha256=d9yXceZGuQk_AgHJxxs4YK5TE0XAerP7CxzOcM7MUeQ,39
104
+ tinet_agent_cli-0.1.0.dev36.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ taco = taco.cli:main