├── LICENSE ├── PYPI_llmFunctionDecorator ├── MANIFEST.in ├── README.md ├── dist │ ├── llmFunctionDecorator-1.0.0-py3-none-any.whl │ └── llmFunctionDecorator-1.0.0.tar.gz ├── llmFunctionDecorator │ └── __init__.py ├── pyproject.toml └── setup.py ├── README.md └── examples ├── advancedChatLoopExample ├── helperFunctions.py ├── main.py └── tools.py ├── examples.md ├── litellmParallelFunctionCall.py └── openaiParallelFunctionCall.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/LICENSE -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/MANIFEST.in -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/README.md -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/dist/llmFunctionDecorator-1.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/dist/llmFunctionDecorator-1.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/dist/llmFunctionDecorator-1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/dist/llmFunctionDecorator-1.0.0.tar.gz -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/llmFunctionDecorator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/llmFunctionDecorator/__init__.py -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/pyproject.toml -------------------------------------------------------------------------------- /PYPI_llmFunctionDecorator/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/PYPI_llmFunctionDecorator/setup.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/README.md -------------------------------------------------------------------------------- /examples/advancedChatLoopExample/helperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/advancedChatLoopExample/helperFunctions.py -------------------------------------------------------------------------------- /examples/advancedChatLoopExample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/advancedChatLoopExample/main.py -------------------------------------------------------------------------------- /examples/advancedChatLoopExample/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/advancedChatLoopExample/tools.py -------------------------------------------------------------------------------- /examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/examples.md -------------------------------------------------------------------------------- /examples/litellmParallelFunctionCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/litellmParallelFunctionCall.py -------------------------------------------------------------------------------- /examples/openaiParallelFunctionCall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-M-D-R-3-W/llmFunctionDecorator/HEAD/examples/openaiParallelFunctionCall.py --------------------------------------------------------------------------------