alpha-avatar-plugins-status 0.6.0__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 (34) hide show
  1. alpha_avatar_plugins_status-0.6.0/.gitignore +181 -0
  2. alpha_avatar_plugins_status-0.6.0/PKG-INFO +641 -0
  3. alpha_avatar_plugins_status-0.6.0/README.md +620 -0
  4. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/__init__.py +80 -0
  5. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/log.py +16 -0
  6. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/policy.py +219 -0
  7. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/renderer.py +222 -0
  8. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/sink.py +376 -0
  9. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/finalizing.avatar_engine.after_tool.txt +3 -0
  10. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/finalizing.default.default.txt +3 -0
  11. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/ready.avatar_engine.session_ready.txt +15 -0
  12. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/thinking.avatar_engine.thinking.txt +15 -0
  13. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_error.deepresearch.default.txt +3 -0
  14. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_error.default.default.txt +3 -0
  15. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_progress.default.default.txt +3 -0
  16. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_start.deepresearch.download.txt +3 -0
  17. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_start.deepresearch.research.txt +3 -0
  18. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_start.deepresearch.scrape.txt +3 -0
  19. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_start.deepresearch.search.txt +3 -0
  20. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/en/tool_start.default.default.txt +3 -0
  21. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/finalizing.avatar_engine.after_tool.txt +3 -0
  22. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/finalizing.default.default.txt +3 -0
  23. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/ready.avatar_engine.session_ready.txt +15 -0
  24. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/thinking.avatar_engine.thinking.txt +15 -0
  25. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_error.deepresearch.default.txt +3 -0
  26. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_error.default.default.txt +3 -0
  27. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_progress.default.default.txt +3 -0
  28. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_start.deepresearch.download.txt +3 -0
  29. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_start.deepresearch.research.txt +3 -0
  30. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_start.deepresearch.scrape.txt +3 -0
  31. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_start.deepresearch.search.txt +3 -0
  32. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/templates/zh/tool_start.default.default.txt +3 -0
  33. alpha_avatar_plugins_status-0.6.0/alphaavatar/plugins/status/version.py +14 -0
  34. alpha_avatar_plugins_status-0.6.0/pyproject.toml +48 -0
@@ -0,0 +1,181 @@
1
+ **/.vscode
2
+ **/.DS_Store
3
+
4
+ # Byte-compiled / optimized / DLL files
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+
9
+ # C extensions
10
+ *.so
11
+
12
+ # Distribution / packaging
13
+ .Python
14
+ build/
15
+ develop-eggs/
16
+ dist/
17
+ downloads/
18
+ eggs/
19
+ .eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ wheels/
26
+ share/python-wheels/
27
+ *.egg-info/
28
+ .installed.cfg
29
+ *.egg
30
+ MANIFEST
31
+ KMS
32
+
33
+ # PyInstaller
34
+ # Usually these files are written by a python script from a template
35
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
36
+ *.manifest
37
+ *.spec
38
+
39
+ # Installer logs
40
+ pip-log.txt
41
+ pip-delete-this-directory.txt
42
+
43
+ # Unit test / coverage reports
44
+ htmlcov/
45
+ .tox/
46
+ .nox/
47
+ .coverage
48
+ .coverage.*
49
+ .cache
50
+ nosetests.xml
51
+ coverage.xml
52
+ *.cover
53
+ *.py,cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+ cover/
57
+
58
+ # Translations
59
+ *.mo
60
+ *.pot
61
+
62
+ # Django stuff:
63
+ *.log
64
+ local_settings.py
65
+ db.sqlite3
66
+ db.sqlite3-journal
67
+
68
+ # Flask stuff:
69
+ instance/
70
+ .webassets-cache
71
+
72
+ # Scrapy stuff:
73
+ .scrapy
74
+
75
+ # Sphinx documentation
76
+ docs/_build/
77
+
78
+ # PyBuilder
79
+ .pybuilder/
80
+ target/
81
+
82
+ # Jupyter Notebook
83
+ .ipynb_checkpoints
84
+
85
+ # IPython
86
+ profile_default/
87
+ ipython_config.py
88
+
89
+ # pyenv
90
+ # For a library or package, you might want to ignore these files since the code is
91
+ # intended to run in multiple environments; otherwise, check them in:
92
+ # .python-version
93
+
94
+ # pipenv
95
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
+ # install all needed dependencies.
99
+ #Pipfile.lock
100
+
101
+ # poetry
102
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
104
+ # commonly ignored for libraries.
105
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106
+ #poetry.lock
107
+
108
+ # pdm
109
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110
+ #pdm.lock
111
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112
+ # in version control.
113
+ # https://pdm.fming.dev/#use-with-ide
114
+ .pdm.toml
115
+
116
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117
+ __pypackages__/
118
+
119
+ # Celery stuff
120
+ celerybeat-schedule
121
+ celerybeat.pid
122
+
123
+ # SageMath parsed files
124
+ *.sage.py
125
+
126
+ # Environments
127
+ .env
128
+ .env.dev
129
+ .env.demo
130
+ .env.personal
131
+ .env.prod
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # mypy
150
+ .mypy_cache/
151
+ .dmypy.json
152
+ dmypy.json
153
+
154
+ # trunk
155
+ .trunk/
156
+
157
+ # Pyre type checker
158
+ .pyre/
159
+
160
+ # pytype static type analyzer
161
+ .pytype/
162
+
163
+ # Cython debug symbols
164
+ cython_debug/
165
+
166
+ # PyCharm
167
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
168
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
169
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
170
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
171
+ .idea/
172
+
173
+ auth
174
+ node_modules
175
+
176
+ credentials.json
177
+ pyrightconfig.json
178
+
179
+ # Database files
180
+ *.db
181
+ .alphaavatar_workspace