https://github.com/ks6088ts-labs/workshop-llm-agents
Workshop for LLM agents
https://github.com/ks6088ts-labs/workshop-llm-agents
azure-ai-services azure-cosmos-db azure-openai-service bing-search langchain langgraph
Last synced: 3 months ago
JSON representation
Workshop for LLM agents
- Host: GitHub
- URL: https://github.com/ks6088ts-labs/workshop-llm-agents
- Owner: ks6088ts-labs
- License: mit
- Created: 2024-11-24T00:02:51.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-19T04:49:29.000Z (7 months ago)
- Last Synced: 2025-03-19T05:23:51.122Z (7 months ago)
- Topics: azure-ai-services, azure-cosmos-db, azure-openai-service, bing-search, langchain, langgraph
- Language: Python
- Homepage: https://ks6088ts-labs.github.io/workshop-llm-agents/
- Size: 2.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
[](https://github.com/ks6088ts-labs/workshop-llm-agents/actions/workflows/test.yaml?query=branch%3Amain)
[](https://github.com/ks6088ts-labs/workshop-llm-agents/actions/workflows/docker.yaml?query=branch%3Amain)
[](https://github.com/ks6088ts-labs/workshop-llm-agents/actions/workflows/docker-release.yaml)
[](https://github.com/ks6088ts-labs/workshop-llm-agents/actions/workflows/ghcr-release.yaml)
[](https://github.com/ks6088ts-labs/workshop-llm-agents/actions/workflows/github-pages.yaml)# workshop-llm-agents
This repository is for a workshop to build LLM agents.
## Prerequisites
- [Python 3.10+](https://www.python.org/downloads/)
- [Poetry](https://python-poetry.org/docs/#installation)
- [GNU Make](https://www.gnu.org/software/make/)## Architecture

## Development instructions
### Local development
Use Makefile to run the project locally.
```shell
# help
make# install dependencies for development
make install-deps-dev# run tests
make test# run CI tests
make ci-test
```### Docker development
```shell
# build docker image
make docker-build# run docker container
make docker-run# run CI tests in docker container
make ci-test-docker
```To publish the docker image to Docker Hub, you need to set the following secrets in the repository settings.
```shell
gh secret set DOCKERHUB_USERNAME --body $DOCKERHUB_USERNAME
gh secret set DOCKERHUB_TOKEN --body $DOCKERHUB_TOKEN
```