From cbb26bc439c82b3da70c8024342d258f04a827d0 Mon Sep 17 00:00:00 2001 From: bweissmann Date: Sat, 7 Oct 2023 18:52:05 -0700 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 67a33cd..2cf8176 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,19 @@ writes code with gpt-4 # structure -- starlight: nodejs standalone program with core logic, controlled and monitored via CLI. Monitoring events also streamed out via redis. -- starlight/blankspace: prompt compilation subsystem. Generates prompts, output parsers, and typescript annotations from natural language specs -- starlight/graph: experiment in homegrown execution graph, evenually aimed at constraining the execution flow of agent-laid plans -- mirrorball: VSCode extension which adds a "Quick Fix" to compile blankspace prompts without leaving VSCode -- midnight: create-react-app frontend -- connects to starlight instances (via redis) and lets users view event streams in real time (future: will be bidirectional with user-input), also experimenting with delayed streaming interfaces for better readability -- server: simple express server to manage client (midnight) connections to redis and route events accordingly +- **starlight:** nodejs standalone program with core logic, controlled and monitored via CLI. Monitoring events also streamed out via redis. +- **starlight/blankspace:** prompt compilation subsystem. Generates prompts, output parsers, and typescript annotations from natural language specs +- **starlight/graph:** experiment in homegrown execution graph, evenually aimed at constraining the execution flow of agent-laid plans +- **mirrorball:** VSCode extension which adds a "Quick Fix" to compile blankspace prompts without leaving VSCode +- **midnight:** create-react-app frontend, experimentations with more readable streaming UI when LLM speed is >> average reading wpm. Connects to starlight instances (via redis streams) and lets users view starlight event streams in real time +- **server:** express server that manages frontend (midnight) connections via websockets, and routes streaming events from redis + - todo: there's a memory leak here that accumulates redis client connections over time + +## visual structure +repo diagram + +source: https://chat.openai.com/share/88ee50af-84ed-40fe-9526-28d14bf50d50 # usage -its a bit in flux right now, ill update the readme when its more stable. \ No newline at end of file +its a bit in flux right now, ill update the readme when its more stable.