sycommon-python-lib 0.2.2a19__tar.gz → 0.2.3a1__tar.gz

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 (270) hide show
  1. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/PKG-INFO +149 -149
  2. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/README.md +107 -107
  3. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/pyproject.toml +56 -56
  4. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/setup.cfg +4 -4
  5. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/__init__.py +28 -28
  6. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/cli.py +457 -457
  7. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/core/__init__.py +19 -19
  8. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/core/console.py +36 -36
  9. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/core/models.py +78 -78
  10. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/core/project.py +310 -310
  11. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/core/utils.py +31 -31
  12. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/__init__.py +1 -1
  13. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/README.md.tpl +88 -88
  14. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/__init__.py +1 -1
  15. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/__init__.py.tpl +6 -6
  16. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/main_agent.py.tpl +51 -51
  17. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/nodes/__init__.py.tpl +6 -6
  18. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/nodes/example_node.py.tpl +33 -33
  19. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/states/__init__.py.tpl +6 -6
  20. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/agent/states/agent_state.py.tpl +30 -30
  21. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/api/__init__.py.tpl +3 -3
  22. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/api/query.py.tpl +30 -30
  23. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/api/sse/__init__.py.tpl +6 -6
  24. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/api/sse/agent.py.tpl +30 -30
  25. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/app.py.tpl +95 -95
  26. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/client/__init__.py.tpl +3 -3
  27. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/db/__init__.py.tpl +8 -8
  28. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/db/model/__init__.py.tpl +8 -8
  29. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/db/model/entity.py.tpl +24 -24
  30. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/db/service.py.tpl +37 -37
  31. {sycommon_python_lib-0.2.2a19/src/command/templates/web → sycommon_python_lib-0.2.3a1/src/command/templates/agent}/model/__init__.py.tpl +3 -3
  32. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/model/parse.py.tpl +22 -22
  33. {sycommon_python_lib-0.2.2a19/src/command/templates/web → sycommon_python_lib-0.2.3a1/src/command/templates/agent}/tools/__init__.py.tpl +3 -3
  34. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/agent/tools/mq.py.tpl +66 -66
  35. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/.env.tpl +9 -9
  36. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/.gitignore.tpl +38 -38
  37. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/Dockerfile.tpl +19 -19
  38. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/README.md.tpl +62 -62
  39. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/__init__.py +1 -1
  40. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/app.py.tpl +66 -66
  41. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/app.yaml.tpl +29 -29
  42. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/client/FileServiceClient.py.tpl +15 -15
  43. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/model/file_info.py.tpl +14 -14
  44. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/requirements.txt.tpl +32 -32
  45. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/README.md.tpl +54 -54
  46. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/__init__.py +1 -1
  47. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/app.py.tpl +45 -45
  48. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/commands/__init__.py.tpl +1 -1
  49. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/commands/hello.py.tpl +6 -6
  50. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/cli/pyproject.toml.tpl +14 -14
  51. {sycommon_python_lib-0.2.2a19/src/command/templates/agent → sycommon_python_lib-0.2.3a1/src/command/templates/cli}/tools/__init__.py.tpl +3 -3
  52. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/README.md.tpl +80 -80
  53. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/__init__.py +1 -1
  54. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/api/__init__.py.tpl +6 -6
  55. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/api/echo.py.tpl +28 -28
  56. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/api/sse/__init__.py.tpl +8 -8
  57. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/api/sse/echo.py.tpl +37 -37
  58. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/app.py.tpl +99 -99
  59. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/client/__init__.py.tpl +3 -3
  60. {sycommon_python_lib-0.2.2a19/src/command/templates/agent → sycommon_python_lib-0.2.3a1/src/command/templates/web}/model/__init__.py.tpl +3 -3
  61. {sycommon_python_lib-0.2.2a19/src/command/templates/cli → sycommon_python_lib-0.2.3a1/src/command/templates/web}/tools/__init__.py.tpl +3 -3
  62. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/web/tools/mq.py.tpl +29 -29
  63. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/nexus/__init__.py +40 -40
  64. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/__init__.py +3 -3
  65. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/__main__.py +6 -6
  66. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/agents/__init__.py +1 -1
  67. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/agents/factory.py +245 -245
  68. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/agents/prompts.py +469 -469
  69. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/__init__.py +1 -1
  70. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/browser.py +214 -214
  71. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/__init__.py +1 -1
  72. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/console.py +85 -85
  73. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/dom.py +53 -53
  74. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/network.py +119 -119
  75. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/page_errors.py +91 -91
  76. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/performance.py +67 -67
  77. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/capabilities/screenshot.py +61 -61
  78. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/client.py +148 -148
  79. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/protocol.py +133 -133
  80. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cdp/repl.py +267 -267
  81. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/cli.py +558 -558
  82. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/__init__.py +1 -1
  83. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/cdp_cmd.py +271 -271
  84. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/chat_cmd.py +283 -283
  85. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/create_cmd.py +122 -122
  86. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/evaluate_cmd.py +180 -180
  87. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/init_cmd.py +164 -164
  88. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/memory_cmd.py +168 -168
  89. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/resume_cmd.py +234 -234
  90. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/rollback_cmd.py +52 -52
  91. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/commands/run_cmd.py +112 -112
  92. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/__init__.py +31 -31
  93. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/backend.py +36 -36
  94. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/config.py +4 -4
  95. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/display.py +96 -96
  96. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/git_integration.py +198 -198
  97. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/llm.py +63 -63
  98. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/core/state.py +40 -40
  99. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/evaluate/__init__.py +1 -1
  100. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/evaluate/api_evaluator.py +696 -696
  101. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/__init__.py +1 -1
  102. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/compressor.py +134 -134
  103. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/full.py +74 -74
  104. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/hot.py +92 -92
  105. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/manager.py +253 -253
  106. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/memory/warm.py +85 -85
  107. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/mode/__init__.py +1 -1
  108. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/mode/create.py +501 -501
  109. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/mode/optimize.py +40 -40
  110. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/models/__init__.py +1 -1
  111. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/models/config_models.py +212 -212
  112. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/__init__.py +1 -1
  113. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/baseline_tests.py +245 -245
  114. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/checkpoint.py +497 -497
  115. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/convergence.py +226 -226
  116. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/diagnosis.py +195 -195
  117. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/engine.py +1792 -1792
  118. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/environment.py +489 -489
  119. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/experience.py +230 -230
  120. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/harness_prompts.py +93 -93
  121. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/history.py +136 -136
  122. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/optimization_logger.py +264 -264
  123. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/pre_validation.py +106 -106
  124. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/reward.py +132 -132
  125. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/strategy_bandit.py +291 -291
  126. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/strategy_generator.py +218 -218
  127. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/rl/strategy_prompts.py +97 -97
  128. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycli/skills/__init__.py +5 -5
  129. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/__init__.py +150 -150
  130. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/agent_manager.py +445 -445
  131. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/chat_events.py +447 -447
  132. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/deep_agent.py +700 -697
  133. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/multi_agent_team.py +717 -717
  134. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/__init__.py +103 -103
  135. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/file_ops.py +604 -604
  136. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/http_sandbox_backend.py +1298 -1298
  137. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/minio_sync.py +500 -500
  138. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/sandbox_pool.py +267 -267
  139. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/sandbox_recovery.py +200 -200
  140. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/sandbox/session.py +82 -82
  141. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/agent/summarization_utils.py +68 -68
  142. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/auth/__init__.py +46 -46
  143. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/auth/ldap_service.py +340 -340
  144. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/auth/wecom_ldap_service.py +490 -490
  145. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/Config.py +175 -175
  146. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/DatabaseConfig.py +34 -34
  147. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/ElasticsearchConfig.py +65 -65
  148. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/EmbeddingConfig.py +15 -15
  149. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/LLMConfig.py +19 -19
  150. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/LangfuseConfig.py +15 -15
  151. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/MQConfig.py +15 -15
  152. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/RedisConfig.py +150 -150
  153. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/RerankerConfig.py +14 -14
  154. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/SentryConfig.py +13 -13
  155. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/XxlJobConfig.py +17 -17
  156. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/async_base_db_service.py +36 -36
  157. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/async_database_service.py +100 -100
  158. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/base_db_service.py +30 -30
  159. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/database_service.py +98 -98
  160. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/elasticsearch_service.py +104 -104
  161. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/redis_service.py +767 -767
  162. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/database/token_usage_db_service.py +181 -181
  163. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/health/health_check.py +17 -17
  164. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/health/metrics.py +13 -13
  165. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/health/ping.py +13 -13
  166. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/heartbeat_process/__init__.py +67 -67
  167. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/heartbeat_process/heartbeat_config.py +137 -137
  168. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/heartbeat_process/heartbeat_process_manager.py +299 -299
  169. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/heartbeat_process/heartbeat_process_worker.py +466 -466
  170. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/embedding.py +455 -455
  171. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/get_llm.py +189 -189
  172. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/llm_logger.py +77 -77
  173. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/llm_tokens.py +127 -127
  174. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/llm_with_token_tracking.py +242 -242
  175. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/native_with_fallback_runnable.py +201 -201
  176. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/output_fixing_runnable.py +216 -216
  177. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/struct_token.py +486 -486
  178. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/sy_langfuse.py +120 -105
  179. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/token_usage_es_service.py +539 -539
  180. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/token_usage_mysql_service.py +818 -818
  181. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/usage_token.py +186 -186
  182. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/async_sql_logger.py +65 -65
  183. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/kafka_log.py +339 -339
  184. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/logger_levels.py +23 -23
  185. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/logger_wrapper.py +25 -25
  186. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/process_logger.py +177 -177
  187. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/sql_logger.py +53 -53
  188. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/background_execution.py +568 -568
  189. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/context.py +5 -5
  190. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/cors.py +16 -16
  191. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/docs.py +30 -30
  192. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/exception.py +79 -79
  193. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/middleware.py +51 -51
  194. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/monitor_memory.py +22 -22
  195. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/mq.py +8 -8
  196. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/sandbox.py +1553 -1553
  197. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/timeout.py +44 -44
  198. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/token_tracking.py +173 -173
  199. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/tool_result_truncation.py +136 -136
  200. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/traceid.py +312 -312
  201. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/base_http.py +101 -101
  202. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/log.py +30 -30
  203. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/mqlistener_config.py +39 -39
  204. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/mqmsg_model.py +11 -11
  205. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/mqsend_config.py +8 -8
  206. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/sandbox.py +340 -340
  207. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/sso_user.py +66 -66
  208. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/token_usage.py +25 -25
  209. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/token_usage_mysql.py +59 -59
  210. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/xxljob_handler_config.py +11 -11
  211. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/notice/__init__.py +5 -5
  212. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/notice/uvicorn_monitor.py +346 -346
  213. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/notice/wecom_message.py +328 -328
  214. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/process_pool_consumer.py +850 -850
  215. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_client.py +407 -407
  216. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_pool.py +324 -324
  217. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service.py +242 -242
  218. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service_client_manager.py +252 -252
  219. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service_connection_monitor.py +108 -108
  220. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service_consumer_manager.py +243 -243
  221. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service_core.py +130 -130
  222. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/rabbitmq/rabbitmq_service_producer_manager.py +231 -231
  223. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/sentry/sy_sentry.py +35 -35
  224. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/services.py +505 -505
  225. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/sse/__init__.py +4 -4
  226. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/sse/event.py +97 -97
  227. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/sse/sse.py +289 -289
  228. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/__init__.py +9 -9
  229. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/example.py +248 -248
  230. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/example2.py +227 -227
  231. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/feign.py +310 -310
  232. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/feign_client.py +432 -432
  233. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_client_base.py +171 -171
  234. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_config_manager.py +163 -163
  235. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_heartbeat_manager.py +245 -245
  236. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_service.py +286 -286
  237. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_service_discovery.py +245 -245
  238. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/nacos_service_registration.py +263 -263
  239. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/synacos/param.py +75 -75
  240. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tests/deep_agent_server.py +535 -535
  241. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tests/test_deep_agent.py +160 -160
  242. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tests/test_email.py +172 -172
  243. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tests/test_mq.py +128 -128
  244. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/async_utils.py +26 -26
  245. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/docs.py +42 -42
  246. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/env.py +62 -62
  247. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/merge_headers.py +135 -135
  248. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/snowflake.py +263 -263
  249. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/syemail.py +173 -173
  250. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/timing.py +73 -73
  251. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/xxljob/__init__.py +3 -3
  252. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/xxljob/xxljob_service.py +196 -196
  253. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/PKG-INFO +149 -149
  254. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/tests/test_sycli.py +1873 -1873
  255. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/client/__init__.py.tpl +0 -0
  256. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/command/templates/base/model/__init__.py.tpl +0 -0
  257. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/__init__.py +0 -0
  258. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/config/__init__.py +0 -0
  259. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/health/__init__.py +0 -0
  260. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/llm/__init__.py +0 -0
  261. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/logging/__init__.py +0 -0
  262. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/middleware/__init__.py +0 -0
  263. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/models/__init__.py +0 -0
  264. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/sentry/__init__.py +0 -0
  265. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon/tools/__init__.py +0 -0
  266. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/SOURCES.txt +0 -0
  267. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/dependency_links.txt +0 -0
  268. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/entry_points.txt +0 -0
  269. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/requires.txt +0 -0
  270. {sycommon_python_lib-0.2.2a19 → sycommon_python_lib-0.2.3a1}/src/sycommon_python_lib.egg-info/top_level.txt +0 -0
@@ -1,149 +1,149 @@
1
- Metadata-Version: 2.4
2
- Name: sycommon-python-lib
3
- Version: 0.2.2a19
4
- Summary: Add your description here
5
- Requires-Python: >=3.11
6
- Description-Content-Type: text/markdown
7
- Requires-Dist: aio-pika>=9.6.2
8
- Requires-Dist: aiohttp>=3.13.5
9
- Requires-Dist: aiomysql>=0.3.2
10
- Requires-Dist: anyio>=4.12.1
11
- Requires-Dist: decorator>=5.2.1
12
- Requires-Dist: deepagents>=0.5.3
13
- Requires-Dist: elasticsearch>=9.3.0
14
- Requires-Dist: fastapi>=0.136.1
15
- Requires-Dist: jinja2>=3.1.6
16
- Requires-Dist: kafka-python>=2.3.1
17
- Requires-Dist: langchain>=1.2.15
18
- Requires-Dist: langchain-core>=1.3.2
19
- Requires-Dist: langchain-openai>=1.2.1
20
- Requires-Dist: langfuse>=4.5.1
21
- Requires-Dist: langgraph>=1.1.9
22
- Requires-Dist: langgraph-checkpoint-redis>=0.4.1
23
- Requires-Dist: ldap3>=2.9.1
24
- Requires-Dist: loguru>=0.7.3
25
- Requires-Dist: mysql-connector-python>=9.6.0
26
- Requires-Dist: nacos-sdk-python<3.0,>=2.0.11
27
- Requires-Dist: psutil>=7.2.2
28
- Requires-Dist: pyxxl>=0.4.6
29
- Requires-Dist: pydantic>=2.13.3
30
- Requires-Dist: python-dotenv>=1.2.2
31
- Requires-Dist: python-multipart>=0.0.26
32
- Requires-Dist: pyyaml>=6.0.3
33
- Requires-Dist: redis>=7.3.0
34
- Requires-Dist: sentry-sdk[fastapi]>=2.58.0
35
- Requires-Dist: sqlalchemy[asyncio]>=2.0.48
36
- Requires-Dist: starlette[full]>=1.0.0
37
- Requires-Dist: tiktoken>=0.12.0
38
- Requires-Dist: uvicorn>=0.46.0
39
- Requires-Dist: wecom-aibot-python-sdk>=1.0.2
40
- Requires-Dist: twine>=6.2.0
41
- Requires-Dist: minio>=7.2.20
42
-
43
- # sycommon-python-lib
44
-
45
- 常用 python 依赖库
46
-
47
- pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
48
-
49
- ## Getting started
50
-
51
- To make it easy for you to get started with GitLab, here's a list of recommended next steps.
52
-
53
- Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
54
-
55
- ## Add your files
56
-
57
- - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
58
- - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
59
-
60
- ```
61
- cd existing_repo
62
- git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
63
- git branch -M main
64
- git push -uf origin main
65
- ```
66
-
67
- ## Integrate with your tools
68
-
69
- - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
70
-
71
- ## Collaborate with your team
72
-
73
- - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
74
- - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
75
- - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
76
- - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
77
- - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
78
-
79
- ## Test and Deploy
80
-
81
- Use the built-in continuous integration in GitLab.
82
-
83
- - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
84
- - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
85
- - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
86
- - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
87
- - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
88
-
89
- ---
90
-
91
- # Editing this README
92
-
93
- When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
94
-
95
- ## Suggestions for a good README
96
-
97
- Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
98
-
99
- ## Name
100
-
101
- Choose a self-explaining name for your project.
102
-
103
- ## Description
104
-
105
- Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
106
-
107
- ## Badges
108
-
109
- On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
110
-
111
- ## Visuals
112
-
113
- Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
114
-
115
- ## Installation
116
-
117
- Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
118
-
119
- ## Usage
120
-
121
- Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
122
-
123
- ## Support
124
-
125
- Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
126
-
127
- ## Roadmap
128
-
129
- If you have ideas for releases in the future, it is a good idea to list them in the README.
130
-
131
- ## Contributing
132
-
133
- State if you are open to contributions and what your requirements are for accepting them.
134
-
135
- For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
136
-
137
- You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
138
-
139
- ## Authors and acknowledgment
140
-
141
- Show your appreciation to those who have contributed to the project.
142
-
143
- ## License
144
-
145
- For open source projects, say how it is licensed.
146
-
147
- ## Project status
148
-
149
- If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
1
+ Metadata-Version: 2.4
2
+ Name: sycommon-python-lib
3
+ Version: 0.2.3a1
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: aio-pika>=9.6.2
8
+ Requires-Dist: aiohttp>=3.13.5
9
+ Requires-Dist: aiomysql>=0.3.2
10
+ Requires-Dist: anyio>=4.12.1
11
+ Requires-Dist: decorator>=5.2.1
12
+ Requires-Dist: deepagents>=0.5.3
13
+ Requires-Dist: elasticsearch>=9.3.0
14
+ Requires-Dist: fastapi>=0.136.1
15
+ Requires-Dist: jinja2>=3.1.6
16
+ Requires-Dist: kafka-python>=2.3.1
17
+ Requires-Dist: langchain>=1.2.15
18
+ Requires-Dist: langchain-core>=1.3.2
19
+ Requires-Dist: langchain-openai>=1.2.1
20
+ Requires-Dist: langfuse>=4.5.1
21
+ Requires-Dist: langgraph>=1.1.9
22
+ Requires-Dist: langgraph-checkpoint-redis>=0.4.1
23
+ Requires-Dist: ldap3>=2.9.1
24
+ Requires-Dist: loguru>=0.7.3
25
+ Requires-Dist: mysql-connector-python>=9.6.0
26
+ Requires-Dist: nacos-sdk-python<3.0,>=2.0.11
27
+ Requires-Dist: psutil>=7.2.2
28
+ Requires-Dist: pyxxl>=0.4.6
29
+ Requires-Dist: pydantic>=2.13.3
30
+ Requires-Dist: python-dotenv>=1.2.2
31
+ Requires-Dist: python-multipart>=0.0.26
32
+ Requires-Dist: pyyaml>=6.0.3
33
+ Requires-Dist: redis>=7.3.0
34
+ Requires-Dist: sentry-sdk[fastapi]>=2.58.0
35
+ Requires-Dist: sqlalchemy[asyncio]>=2.0.48
36
+ Requires-Dist: starlette[full]>=1.0.0
37
+ Requires-Dist: tiktoken>=0.12.0
38
+ Requires-Dist: uvicorn>=0.46.0
39
+ Requires-Dist: wecom-aibot-python-sdk>=1.0.2
40
+ Requires-Dist: twine>=6.2.0
41
+ Requires-Dist: minio>=7.2.20
42
+
43
+ # sycommon-python-lib
44
+
45
+ 常用 python 依赖库
46
+
47
+ pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
48
+
49
+ ## Getting started
50
+
51
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
52
+
53
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
54
+
55
+ ## Add your files
56
+
57
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
58
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
59
+
60
+ ```
61
+ cd existing_repo
62
+ git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
63
+ git branch -M main
64
+ git push -uf origin main
65
+ ```
66
+
67
+ ## Integrate with your tools
68
+
69
+ - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
70
+
71
+ ## Collaborate with your team
72
+
73
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
74
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
75
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
76
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
77
+ - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
78
+
79
+ ## Test and Deploy
80
+
81
+ Use the built-in continuous integration in GitLab.
82
+
83
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
84
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
85
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
86
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
87
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
88
+
89
+ ---
90
+
91
+ # Editing this README
92
+
93
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
94
+
95
+ ## Suggestions for a good README
96
+
97
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
98
+
99
+ ## Name
100
+
101
+ Choose a self-explaining name for your project.
102
+
103
+ ## Description
104
+
105
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
106
+
107
+ ## Badges
108
+
109
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
110
+
111
+ ## Visuals
112
+
113
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
114
+
115
+ ## Installation
116
+
117
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
118
+
119
+ ## Usage
120
+
121
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
122
+
123
+ ## Support
124
+
125
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
126
+
127
+ ## Roadmap
128
+
129
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
130
+
131
+ ## Contributing
132
+
133
+ State if you are open to contributions and what your requirements are for accepting them.
134
+
135
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
136
+
137
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
138
+
139
+ ## Authors and acknowledgment
140
+
141
+ Show your appreciation to those who have contributed to the project.
142
+
143
+ ## License
144
+
145
+ For open source projects, say how it is licensed.
146
+
147
+ ## Project status
148
+
149
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
@@ -1,107 +1,107 @@
1
- # sycommon-python-lib
2
-
3
- 常用 python 依赖库
4
-
5
- pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
6
-
7
- ## Getting started
8
-
9
- To make it easy for you to get started with GitLab, here's a list of recommended next steps.
10
-
11
- Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
12
-
13
- ## Add your files
14
-
15
- - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
16
- - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
17
-
18
- ```
19
- cd existing_repo
20
- git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
21
- git branch -M main
22
- git push -uf origin main
23
- ```
24
-
25
- ## Integrate with your tools
26
-
27
- - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
28
-
29
- ## Collaborate with your team
30
-
31
- - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
32
- - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
33
- - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
34
- - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
35
- - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
36
-
37
- ## Test and Deploy
38
-
39
- Use the built-in continuous integration in GitLab.
40
-
41
- - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
42
- - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
43
- - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
44
- - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
45
- - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
46
-
47
- ---
48
-
49
- # Editing this README
50
-
51
- When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
52
-
53
- ## Suggestions for a good README
54
-
55
- Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
56
-
57
- ## Name
58
-
59
- Choose a self-explaining name for your project.
60
-
61
- ## Description
62
-
63
- Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
64
-
65
- ## Badges
66
-
67
- On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
68
-
69
- ## Visuals
70
-
71
- Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
72
-
73
- ## Installation
74
-
75
- Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
76
-
77
- ## Usage
78
-
79
- Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
80
-
81
- ## Support
82
-
83
- Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
84
-
85
- ## Roadmap
86
-
87
- If you have ideas for releases in the future, it is a good idea to list them in the README.
88
-
89
- ## Contributing
90
-
91
- State if you are open to contributions and what your requirements are for accepting them.
92
-
93
- For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
94
-
95
- You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
96
-
97
- ## Authors and acknowledgment
98
-
99
- Show your appreciation to those who have contributed to the project.
100
-
101
- ## License
102
-
103
- For open source projects, say how it is licensed.
104
-
105
- ## Project status
106
-
107
- If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
1
+ # sycommon-python-lib
2
+
3
+ 常用 python 依赖库
4
+
5
+ pip install sycommon-python-lib -i http://192.168.2.174:8081/repository/pypy-group/simple/ --trusted-host 192.168.2.174
6
+
7
+ ## Getting started
8
+
9
+ To make it easy for you to get started with GitLab, here's a list of recommended next steps.
10
+
11
+ Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
12
+
13
+ ## Add your files
14
+
15
+ - [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
16
+ - [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
17
+
18
+ ```
19
+ cd existing_repo
20
+ git remote add origin http://git.syf.com/syai/sycommon-python-lib.git
21
+ git branch -M main
22
+ git push -uf origin main
23
+ ```
24
+
25
+ ## Integrate with your tools
26
+
27
+ - [ ] [Set up project integrations](http://git.syf.com/syai/sycommon-python-lib/-/settings/integrations)
28
+
29
+ ## Collaborate with your team
30
+
31
+ - [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
32
+ - [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
33
+ - [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
34
+ - [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
35
+ - [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
36
+
37
+ ## Test and Deploy
38
+
39
+ Use the built-in continuous integration in GitLab.
40
+
41
+ - [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
42
+ - [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
43
+ - [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
44
+ - [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
45
+ - [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
46
+
47
+ ---
48
+
49
+ # Editing this README
50
+
51
+ When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
52
+
53
+ ## Suggestions for a good README
54
+
55
+ Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
56
+
57
+ ## Name
58
+
59
+ Choose a self-explaining name for your project.
60
+
61
+ ## Description
62
+
63
+ Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
64
+
65
+ ## Badges
66
+
67
+ On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
68
+
69
+ ## Visuals
70
+
71
+ Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
72
+
73
+ ## Installation
74
+
75
+ Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
76
+
77
+ ## Usage
78
+
79
+ Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
80
+
81
+ ## Support
82
+
83
+ Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
84
+
85
+ ## Roadmap
86
+
87
+ If you have ideas for releases in the future, it is a good idea to list them in the README.
88
+
89
+ ## Contributing
90
+
91
+ State if you are open to contributions and what your requirements are for accepting them.
92
+
93
+ For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
94
+
95
+ You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
96
+
97
+ ## Authors and acknowledgment
98
+
99
+ Show your appreciation to those who have contributed to the project.
100
+
101
+ ## License
102
+
103
+ For open source projects, say how it is licensed.
104
+
105
+ ## Project status
106
+
107
+ If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
@@ -1,56 +1,56 @@
1
- [project]
2
- name = "sycommon-python-lib"
3
- version = "0.2.2a19"
4
- description = "Add your description here"
5
- readme = "README.md"
6
- requires-python = ">=3.11"
7
- dependencies = [
8
- "aio-pika>=9.6.2",
9
- "aiohttp>=3.13.5",
10
- "aiomysql>=0.3.2",
11
- "anyio>=4.12.1",
12
- "decorator>=5.2.1",
13
- "deepagents>=0.5.3",
14
- "elasticsearch>=9.3.0",
15
- "fastapi>=0.136.1",
16
- "jinja2>=3.1.6",
17
- "kafka-python>=2.3.1",
18
- "langchain>=1.2.15",
19
- "langchain-core>=1.3.2",
20
- "langchain-openai>=1.2.1",
21
- "langfuse>=4.5.1",
22
- "langgraph>=1.1.9",
23
- "langgraph-checkpoint-redis>=0.4.1",
24
- "ldap3>=2.9.1",
25
- "loguru>=0.7.3",
26
- "mysql-connector-python>=9.6.0",
27
- "nacos-sdk-python>=2.0.11,<3.0",
28
- "psutil>=7.2.2",
29
- "pyxxl>=0.4.6",
30
- "pydantic>=2.13.3",
31
- "python-dotenv>=1.2.2",
32
- "python-multipart>=0.0.26",
33
- "pyyaml>=6.0.3",
34
- "redis>=7.3.0",
35
- "sentry-sdk[fastapi]>=2.58.0",
36
- "sqlalchemy[asyncio]>=2.0.48",
37
- "starlette[full]>=1.0.0",
38
- "tiktoken>=0.12.0",
39
- "uvicorn>=0.46.0",
40
- "wecom-aibot-python-sdk>=1.0.2",
41
- "twine>=6.2.0",
42
- "minio>=7.2.20",
43
- ]
44
-
45
- [tool.setuptools]
46
- packages = {find = {where = ["src"], exclude = ["*.__pycache__", "*.__pycache__.*"]}}
47
- package-data = {command = ["templates/**/*", "templates/**/.*"]}
48
-
49
- [build-system]
50
- requires = ["setuptools"]
51
- build-backend = "setuptools.build_meta"
52
-
53
- [project.scripts]
54
- sycommon = "command.cli:main"
55
- sycli = "sycli.cli:main"
56
- sypublish = "nexus:main"
1
+ [project]
2
+ name = "sycommon-python-lib"
3
+ version = "0.2.3a1"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = [
8
+ "aio-pika>=9.6.2",
9
+ "aiohttp>=3.13.5",
10
+ "aiomysql>=0.3.2",
11
+ "anyio>=4.12.1",
12
+ "decorator>=5.2.1",
13
+ "deepagents>=0.5.3",
14
+ "elasticsearch>=9.3.0",
15
+ "fastapi>=0.136.1",
16
+ "jinja2>=3.1.6",
17
+ "kafka-python>=2.3.1",
18
+ "langchain>=1.2.15",
19
+ "langchain-core>=1.3.2",
20
+ "langchain-openai>=1.2.1",
21
+ "langfuse>=4.5.1",
22
+ "langgraph>=1.1.9",
23
+ "langgraph-checkpoint-redis>=0.4.1",
24
+ "ldap3>=2.9.1",
25
+ "loguru>=0.7.3",
26
+ "mysql-connector-python>=9.6.0",
27
+ "nacos-sdk-python>=2.0.11,<3.0",
28
+ "psutil>=7.2.2",
29
+ "pyxxl>=0.4.6",
30
+ "pydantic>=2.13.3",
31
+ "python-dotenv>=1.2.2",
32
+ "python-multipart>=0.0.26",
33
+ "pyyaml>=6.0.3",
34
+ "redis>=7.3.0",
35
+ "sentry-sdk[fastapi]>=2.58.0",
36
+ "sqlalchemy[asyncio]>=2.0.48",
37
+ "starlette[full]>=1.0.0",
38
+ "tiktoken>=0.12.0",
39
+ "uvicorn>=0.46.0",
40
+ "wecom-aibot-python-sdk>=1.0.2",
41
+ "twine>=6.2.0",
42
+ "minio>=7.2.20",
43
+ ]
44
+
45
+ [tool.setuptools]
46
+ packages = {find = {where = ["src"], exclude = ["*.__pycache__", "*.__pycache__.*"]}}
47
+ package-data = {command = ["templates/**/*", "templates/**/.*"]}
48
+
49
+ [build-system]
50
+ requires = ["setuptools"]
51
+ build-backend = "setuptools.build_meta"
52
+
53
+ [project.scripts]
54
+ sycommon = "command.cli:main"
55
+ sycli = "sycli.cli:main"
56
+ sypublish = "nexus:main"
@@ -1,4 +1,4 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+