Views
No views yet

git lfs installed.1/$ git lfs install
2
3# With plugins
4/$ git clone --recurse-submodules https://github.com/gustavokuklinski/aeon.ai.git
5
6# Without plugins
7/$ git clone https://github.com/gustavokuklinski/aeon.ai.git1# Create .venv
2/$ python -m venv .venv
3
4# Start virtual env
5/$ source .venv/bin/activate
6
7# Run check and install dependencies
8/$ python3 scripts/install.py
9
10# Start AEON
11/$ python3 aeon.py1docker build -t aeon .
2
3docker run -it --rm -p 7860:7860 -v "$(pwd):/app" aeon
| OS | CPU | GPU | RAM |
|---|---|---|---|
| Ubuntu 24.04.2 LTS | Intel i7-10510U | Intel CometLake-U GT2 | 16GB |
| Windows 11 Home Edition | Intel i7-10510U | Intel CometLake-U GT2 | 8GB |
1brew install llama.cpp
2llama-cli --hf-repo gustavokuklinski/aeon-GGUF --hf-file aeon-360M.Q8_0.gguf -p "What is a virtual species?"llama-server --hf-repo gustavokuklinski/aeon-GGUF --hf-file aeon-360M.Q8_0.gguf -c 2048git clone https://github.com/ggerganov/llama.cppLLAMA_CURL=1 flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).cd llama.cpp && LLAMA_CURL=1 make./llama-cli --hf-repo gustavokuklinski/aeon-GGUF --hf-file aeon-360M.Q8_0.gguf -p "What is a virtual species?"./llama-server --hf-repo gustavokuklinski/aeon-GGUF --hf-file aeon-360M.Q8_0.gguf -c 2048