Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mlincon committed Jun 30, 2024
1 parent fc880ee commit de5c728
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ Link: https://github.com/DataTalksClub/llm-zoomcamp

- Get Cohere AI key: https://cohere.com/blog/free-developer-tier-announcement
- LiteLLM docs: https://litellm.vercel.app/docs/providers/cohere

# Git prune untracked branches

https://stackoverflow.com/questions/7726949/remove-tracking-branches-no-longer-on-remote

`git fetch -p && for branch in $(git branch -vv | grep ': gone]' | awk '{print $1}'); do git branch -D $branch; done`

0 comments on commit de5c728

Please sign in to comment.