LlamaScript is a no-code AI chatbot using Ollama.
You can install LlamaScript using pip:
pip install llamascript
To use LlamaScript, create a llama file (no file extension) with the following commands:
IGNORE: Use this before the CHAT command to supress the welcome message.
USE <model>: This command loads the specified model.
SYSTEM <message>: This command sets the system prompt.
PROMPT <message>: This command sets the message to be sent to the chatbot.
CHAT: This command sends the message to the chatbot and prints the response.
Here's an example:
IGNORE
USE llama3
PROMPT Hello, how are you?
CHAT
Note
For more examples see here.
You can then run LlamaScript with the following command:
llamascript
LlamaScript usually has a file extension of .llama
, but if it is ran as a main script, it is usually llama
(no file extension).
LlamaScript is licensed under the Apache 2.0 License.
Things to come in the future:
- An
API
command to serve on Flask - Plugins/Extensions handling (Help Wanted)