gptscript
gptscript copied to clipboard
Natural Language Programming
seperated -> separated
Build the UI with the node image in docker, and an Acornfile
I'm trying to run this on Azure and in azure the model name is not actually the model name itself, but instead a user defined model deployment name, which will...
Similar to the `?` on sys.* tools allowing for the LLM to retry based on the errors, users should be able to do that with their own tools. Right now,...
Right now, everything just prints in the default color. I think it would be nice to have function calls show up in one color, output from the LLM show up...
Builtin support for appending to a file would be helpful when there is a need to write to the same file with in a loop. I tried the following gptscript...
## Description Add built-in tools that can store and retrieve arbitrary key-value pairs to/from disk on my local machine. ## Motivation If I want a tool to be able to...
I'd like to see robust secret handling incorporated into gptscript. This secret handling would take two forms: 1. A way to handle secrets for gptscripts. Environment variables are OK for...
A sample gptscript: ``` Run commmand and do such-and-such with the output. ``` It would be nice if we could save a call to OpenAI for the "Run command" part...
Since some of these process can take a while, it would be nice to have some type of async/await. The nicest version of this I can imagine is automatic. That...