Draw a mockup and generate html for itdraw-a-ui This is an app that uses tldraw and the gpt-4-vision api to generate html based on a wireframe you draw. This works by just taking the current canvas SVG, converting it to a PNG, and sending that png to gpt-4-vision with instructions to return a single html file with tailwind. Disclaimer: This is a demo and is not intended for production use. It doesn't have any auth so you will go broke if you deploy it. Getting Started This is a Next.js a…
Early experiment to create fully autonomous agent swarmsHierarchical Autonomous Agent Swarm (HAAS) !!!! ANNOUNCEMENT We have our first GPT Concierge. You can chat with this custom ChatGPT to figure out what's going on! HAAS Board Concierge: https://chat.openai.com/g/g-MIssTuE2b-haas-board-concierge Overview The Hierarchical Autonomous Agent Swarm (HAAS) is a groundbreaking initiative that leverages OpenAI's latest advancements in agent-based APIs to create a self-organizing and ethi…
ChatGPT web interface using the OpenAI APIChatGPT-web URL: https://niek.github.io/chatgpt-web/ ChatGPT-web is a simple one-page web interface to the OpenAI ChatGPT API. To use it, you need to register for an OpenAI API key first. All messages are stored in your browser's local storage, so everything is private. You can also close the browser tab and come back later to continue the conversation. Features Open source: ChatGPT-web is open source (GPL-3.0), so you can host it yourself and…
Build and deploy Go applicationsko: Easy Go Containers 🎉 Google has applied for ko to join the Cloud Native Computing Foundation as a Sandbox project! Learn more here! ko is a simple, fast container image builder for Go applications. It's ideal for use cases where your image contains a single Go application without any/many dependencies on the OS base image (e.g., no cgo, no OS package dependencies). ko builds images by effectively executing go build on your local machine, and as su…
Repo of custom instructions that you can use for ChatGPTChatGPT_Custom_Instructions Each file has a brief description and the SYSTEM prompt (custom instructions). To use these, just copy the block of text into the Custom Instructions in your ChatGPT app. General Structure You can write your own. This is the general pattern I follow. You can pick and choose whatever you want. # Mission - Outcome or goal - Not procedure # Context - Background info - Where in the process are you - Why does it nee…
PhoGPT: Generative Pre-training for Vietnamese Introduction Evaluation Model download Run the model Fine-tuning the model Limitations License PhoGPT: Generative Pre-training for Vietnamese We open-source a state-of-the-art 7.5B-parameter generative model series named PhoGPT for Vietnamese, which includes the base pre-trained monolingual model PhoGPT-7B5 and its instruction-following variant PhoGPT-7B5-Instruct. More details about the general architecture and experimental results of PhoGPT can …
IDE style command line auto completeinshellisense inshellisense provides IDE style autocomplete for shells. It's a terminal native runtime for autocomplete which has support for 600+ command line tools. inshellisense supports Windows, Linux, & MacOS. Getting Started Requirements node >= 16.x Installation npm install -g @microsoft/inshellisense Quickstart After completing the installation, you can already run inshellisense --shell <shell> to start the autocomplete session for…
Consistency Distilled Diff VAEConsistency Decoder [DALL·E 3] [Improving Image Generation with Better Captions] [Consistency Models] Improved decoding for stable diffusion vaes. Installation $ pip install git+https://github.com/openai/consistencydecoder.git Usage import torch from diffusers import StableDiffusionPipeline from consistencydecoder import ConsistencyDecoder, save_image, load_image # encode with stable diffusion vae pipe = StableDiffusionPipeline.from_pretrained( "runwayml/…
A FORTH in 386 bytes — the smallest real programming language ever as of yet.milliForth A FORTH in 380 bytes — the smallest real programming language ever, as of yet. The code in the above gif, that of [an older version of] hello_world.FORTH, is a modified version of the hello world program used by sectorFORTH (see below) bytes? Yes, bytes. This is a FORTH so small it fits in a 512-byte boot sector. This isn't new — sectorFORTH1 successfully fit a FORTH within the boot sector. However, …