Go back
Easy Steps to Get Started
- Install Ollama: Visit ollama.com and follow the installation instructions for your operating system.
- Install a model (like Llama3.1):
ollama pull llama3.1
- If needed, edit the default.toml configuration file for GO-CREW.
- Run GO-CREW:
./go-crew
Understanding the Configuration (default.toml)
name = 'default.toml'
prompt = 'Hello World' # initial prompt
default_model = 'llama3.1'
default_temperature = 0.8
default_model_context = 0 # 0 = automatic
default_timeout = 60
# default_custom_output = '
Configuration Explanation
- prompt: The initial prompt sent to the model.
- default_model: The default language model to use (e.g., 'llama3.1').
- default_temperature: Controls the randomness of the output (0.0 to 1.0).
- default_model_context: Context size (0 for automatic).
- default_custom_output: Regular expression for custom output.
- concurrency: Number of concurrent operations for increased speed.
- hosting: Settings for hosting a web interface.
- embedding: Settings for RAG (Retrieval-Augmented Generation) functions.
- embedding.sources: Define sources for document ingestion (files or URLs).