Skip to content

Commit

Permalink
enable git push from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Magdalena Kuhn committed Apr 4, 2024
1 parent c500079 commit 4cbd9f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/fetch_contributors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- name: Update README with contributors
run: python src/fetch_contributors.py
- name: Commit and push if changed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
Expand Down
17 changes: 6 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<div align="center">
<h1>awesome-cheap-llms</h1>
<p align="center">
:yellow_heart: <a href="https://www.canva.com/design/DAGAzJWIcnw/FIWWonF55d9FARA57xT8vg/edit?utm_content=DAGAzJWIcnw&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton">Costs of RAG based applications</a> •
:blue_heart: <a href="https://www.linkedin.com/in/joannastoffregen/">Follow Joanna on LinkedIn</a> •
:blue_heart: <a href="https://www.linkedin.com/in/magdalenakuhn/">Follow Magdalena on LinkedIn</a> •
:white_heart: <a href="https://github.com/DataTalksClub/llm-zoomcamp">Sign up to DataTalksClub LLM Zoomcamp</a> •
:yellow_heart: <a href="https://www.canva.com/design/DAGAzJWIcnw/FIWWonF55d9FARA57xT8vg/edit?utm_content=DAGAzJWIcnw&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton">Costs of RAG based applications</a> <br>
:blue_heart: <a href="https://www.linkedin.com/in/joannastoffregen/">Follow Joanna on LinkedIn</a> - <a href="https://www.linkedin.com/in/magdalenakuhn/">Follow Magdalena on LinkedIn</a> <br>
:white_heart: <a href="https://github.com/DataTalksClub/llm-zoomcamp">Sign up to DataTalksClub LLM Zoomcamp</a>
</p>
</div>
<br/>
<p align="center">
Cost reduction tools and techniques for LLM based systems
Cost reduction tools and techniques for LLM based systems <br> <br>
<img src="images/Screenshot%202024-04-04%20at%2007.41.00.png" alt="Alt text" title="Expectation vs. Reality">
</p>

Expand Down Expand Up @@ -98,12 +97,8 @@ Make sure one single customer is not able to penetrate your LLM and skyrocket yo
## 9) :blue_book: During development time
* Make sure to not send endless API calls to your LLM during development and manual testing.
* Make sure to not send automated API calls to your LLM via automated CICD workflows, integration tests etc.

# Contributions welcome
* We’re happy to review and accept your Pull Request on LLM cost reduction techniques and tools.
* We plan to divide the content into subpages to further structure all chapters.


<p align="center">
:1st_place_medal: :2nd_place_medal: :3rd_place_medal:
</p>
<br><br><br><br>
2 changes: 1 addition & 1 deletion src/fetch_contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
readme_contents = file.read()

# Append the contributors list to the README
readme_contents += "\n\n# Top 3 contributors\n" + contributors_md
readme_contents += "\n\n\n# Top :1st_place_medal: :2nd_place_medal: :3rd_place_medal: contributors \n" + contributors_md

# Write the updated contents back to the README
with open("README.md", "w") as file:
Expand Down

0 comments on commit 4cbd9f6

Please sign in to comment.