Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 0 additions & 54 deletions AI-agents-delegate-actions/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@

A sandbox for ideas: imagine freely, experiment boldly, learn from every misstep, and simply play.

> [!WARNING]
> This is just experimental at this point; it is still under development. Please do not use it with sensitive data for now; please wait for a
stable release.
> It's mostly ideal for experimental and learning projects.**

## Contribute

Feel free to fork, change, and use it however you want. We always appreciate it if you build something interesting and feel like sharing pull requests.
Expand Down
14 changes: 0 additions & 14 deletions llm-git-conflict-resolve/README.md

This file was deleted.

6 changes: 6 additions & 0 deletions llm-password-reset/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
__pycache__/
*.py[cod]
.venv/
venv/
*.db
.git
7 changes: 7 additions & 0 deletions llm-password-reset/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__pycache__/
*.py[cod]
*.pyo
.venv/
venv/
guard_secure.db
.env
24 changes: 24 additions & 0 deletions llm-password-reset/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# extended on a minimal Linux OS with pre-installed python 3.12
FROM python:3.12-slim

# prevent python from writing .pyc files
ENV PYTHONDONTWRITEBYTECODE=1
# send print statements directly to terminal (logs)
ENV PYTHONUNBUFFERED=1

WORKDIR /app

# copy and install libraries inside the container
COPY requirements.txt .

RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt

# copy the rest of the structure into the /app folder
COPY . .

# listen on port 8000
EXPOSE 8000

# launch the web server
CMD ["uvicorn", "guard_server:app", "--host", "0.0.0.0", "--port", "8000"]
Loading