This document outlines the event system in ControlFlow, showing the relationships between different event types and their roles in the system.
classDiagram
class Event {
+str event
+str id
#!/usr/bin/env zsh | |
# Exit on error | |
set -e | |
# Colors | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
BLUE='\033[0;34m' | |
YELLOW='\033[1;33m' |
When generating markdown, surround content in entirety with FIVE backticks (`````) at beginning and the end. Use THREE backticks (```) for inner code blocks. |
From e8f8675c53827ceafacc78fdcfa88290228f8edc Mon Sep 17 00:00:00 2001 | |
From: Teo <[email protected]> | |
Date: Fri, 15 Nov 2024 19:46:43 -0600 | |
Subject: [PATCH] agent_ops -> agentops | |
Signed-off-by: Teo <[email protected]> | |
--- | |
agent.py | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) |
# `python-base` sets up all our shared environment variables | |
FROM python:3.11-slim as python-base | |
# python | |
ENV PYTHONUNBUFFERED=1 \ | |
# prevents python creating .pyc files | |
PYTHONDONTWRITEBYTECODE=1 \ | |
\ | |
# pip | |
PIP_NO_CACHE_DIR=off \ |