├── .env.text ├── .gitignore ├── LICENSE ├── README.md ├── assets └── callama.png ├── common ├── prompt.jinja2 └── utils.py ├── examples ├── function_call.py ├── llama3_tinyllama_function_call.ipynb └── ocallama.py ├── llms ├── __init__.py └── llama3.py ├── requirements.txt ├── requirements_with_deps.txt └── setup.py /.env.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/.env.text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/README.md -------------------------------------------------------------------------------- /assets/callama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/assets/callama.png -------------------------------------------------------------------------------- /common/prompt.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/common/prompt.jinja2 -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/common/utils.py -------------------------------------------------------------------------------- /examples/function_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/examples/function_call.py -------------------------------------------------------------------------------- /examples/llama3_tinyllama_function_call.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/examples/llama3_tinyllama_function_call.ipynb -------------------------------------------------------------------------------- /examples/ocallama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/examples/ocallama.py -------------------------------------------------------------------------------- /llms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llms/llama3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/llms/llama3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_with_deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/requirements_with_deps.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/callama/HEAD/setup.py --------------------------------------------------------------------------------