diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 1adc924..6cd20ca 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -26,12 +26,7 @@ jobs: pip install build - name: Build package run: python -m build - - name: Upload artifact - uses: actions/upload-artifact@v4 - with: - name: dist - path: dist - retention-days: 1 + publish: needs: build runs-on: ubuntu-latest @@ -42,10 +37,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Download artifact - uses: actions/download-artifact@v4 - with: - name: dist + - name: Build package + run: python -m build - name: Publish package uses: pypa/gh-action-pypi-publish@3fbcf7ccf443305955ce16db9de8401f7dc1c7dd with: diff --git a/ReadMe.md b/README.md similarity index 95% rename from ReadMe.md rename to README.md index 2244d6c..707bf24 100644 --- a/ReadMe.md +++ b/README.md @@ -1,6 +1,9 @@ # llama-cpp-agent -llama-cpp-agent logo +[![PyPI - Version](https://img.shields.io/pypi/v/llama-cpp-agent?logo=pypi&color=%2341bb13)](https://pypi.org/project/llama-cpp-agent/) +[![Discord](https://img.shields.io/discord/1237393014154985582?logo=Discord&logoColor=%23ffffff&label=Discord&link=https%3A%2F%2Fdiscord.gg%2FsRMvWKrh)](https://discord.gg/sRMvWKrh) + +llama-cpp-agent logo ## Introduction The llama-cpp-agent framework is a tool designed to simplify interactions with Large Language Models (LLMs). It provides an interface for chatting with LLMs, executing function calls, generating structured output, performing retrieval augmented generation, and processing text using agentic chains with tools.