tinyagent-py 0.0.12__py3-none-any.whl → 0.0.15__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.
- tinyagent/code_agent/helper.py +2 -2
- tinyagent/code_agent/modal_sandbox.py +1 -1
- tinyagent/code_agent/providers/base.py +212 -11
- tinyagent/code_agent/providers/modal_provider.py +157 -32
- tinyagent/code_agent/safety.py +6 -2
- tinyagent/code_agent/tiny_code_agent.py +317 -11
- tinyagent/code_agent/utils.py +129 -9
- tinyagent/hooks/__init__.py +3 -1
- tinyagent/hooks/gradio_callback.py +3 -2
- tinyagent/hooks/jupyter_notebook_callback.py +1464 -0
- tinyagent/hooks/token_tracker.py +564 -0
- tinyagent/prompts/summarize.yaml +96 -0
- tinyagent/tiny_agent.py +426 -17
- {tinyagent_py-0.0.12.dist-info → tinyagent_py-0.0.15.dist-info}/METADATA +11 -1
- {tinyagent_py-0.0.12.dist-info → tinyagent_py-0.0.15.dist-info}/RECORD +18 -15
- {tinyagent_py-0.0.12.dist-info → tinyagent_py-0.0.15.dist-info}/WHEEL +0 -0
- {tinyagent_py-0.0.12.dist-info → tinyagent_py-0.0.15.dist-info}/licenses/LICENSE +0 -0
- {tinyagent_py-0.0.12.dist-info → tinyagent_py-0.0.15.dist-info}/top_level.txt +0 -0
@@ -845,8 +845,9 @@ class GradioCallback:
|
|
845
845
|
|
846
846
|
# Footer
|
847
847
|
gr.Markdown(
|
848
|
-
|
849
|
-
"
|
848
|
+
"<div style='text-align: center; margin-top: 20px;'>"
|
849
|
+
"Built with ❤️ by <a href='https://github.com/askbudi/tinyagent' target='_blank'>TinyAgent</a>"
|
850
|
+
"<br>Start building your own AI agents with TinyAgent"
|
850
851
|
"</div>"
|
851
852
|
)
|
852
853
|
|