From fc9acc544e426ea8a1353aefce8e46a61723b149 Mon Sep 17 00:00:00 2001 From: Maximilian Winter Date: Mon, 13 May 2024 03:43:01 +0200 Subject: [PATCH 1/4] Update python-ci.yml --- .github/workflows/python-ci.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) 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: From ad300ebfd94303767e3aaf436c015b2ad4d66bc8 Mon Sep 17 00:00:00 2001 From: Maximilian Winter Date: Mon, 13 May 2024 03:47:46 +0200 Subject: [PATCH 2/4] Update ReadMe.md --- ReadMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReadMe.md b/ReadMe.md index 5caeb32..24f5d7a 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,5 +1,5 @@ # llama-cpp-agent - +[![PyPI version](https://badge.fury.io/py/llama-cpp-agent.svg)](https://badge.fury.io/py/llama-cpp-agent) llama-cpp-agent logo ## Introduction From 522bf30be72f7b71dc36f85bc16b632c4bc70f97 Mon Sep 17 00:00:00 2001 From: Maximilian Winter Date: Mon, 13 May 2024 03:48:00 +0200 Subject: [PATCH 3/4] Update ReadMe.md --- ReadMe.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index 24f5d7a..9afd4bc 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -1,5 +1,7 @@ # llama-cpp-agent + [![PyPI version](https://badge.fury.io/py/llama-cpp-agent.svg)](https://badge.fury.io/py/llama-cpp-agent) + llama-cpp-agent logo ## Introduction From 0e1d4d603013df22cb72c99fe219782cb123c717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=CE=94BL=C3=98=20=E1=84=83=CE=9E?= Date: Mon, 13 May 2024 11:56:29 -0500 Subject: [PATCH 4/4] fix: README --- ReadMe.md => README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename ReadMe.md => README.md (95%) diff --git a/ReadMe.md b/README.md similarity index 95% rename from ReadMe.md rename to README.md index 9afd4bc..1b6288e 100644 --- a/ReadMe.md +++ b/README.md @@ -1,8 +1,9 @@ # llama-cpp-agent -[![PyPI version](https://badge.fury.io/py/llama-cpp-agent.svg)](https://badge.fury.io/py/llama-cpp-agent) +[![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 +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.