https://github.com/lakinduboteju/generative-ai-examples
https://github.com/lakinduboteju/generative-ai-examples
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lakinduboteju/generative-ai-examples
- Owner: lakinduboteju
- Created: 2024-07-08T08:27:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T15:25:35.000Z (11 months ago)
- Last Synced: 2024-07-13T08:34:56.498Z (11 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Generative AI Examples
## How to run
``` bash
# Add LLM credentials to the .env file
mv .env.example .env
`````` bash
$ docker compose build
$ docker compose up -d
$ docker compose down
`````` bash
$ docker exec -it generative-ai-examples bash
`````` bash
$ poetry install
`````` bash
$ poetry run python run_xxxx.py
```## Debug
``` bash
# Run following command and debug using Pythong Debugger in vscode
$ poetry run python -Xfrozen_modules=off -m debugpy --listen 0.0.0.0:5678 --wait-for-client run_xxxx.py
```## Contents
1. Hello, World! : [hello_world](src/hello_world/)
2. Organize Medical Record : [organize_medical_record](src/organize_medical_record/)