Galadriel - the first Layer 1 for AI.
Documentation: docs.galadriel.com
teeML: Trusted Execution Environment for Machine Learning Inference.
The purpose of this repository to enable the querying of model APIs and external tools in a low latency, low cost, and verifiable manner. To do so, it contains everything needed to execute the Galadriel oracle in an AWS Nitro enclave, and verify its execution.
A high level overview is given in docs.galadriel.com.
The oracle currently supports calling the following, all of which is also supported by the TEE setup:
- LLMs from OpenAI and Groq
- Image generation with OpenAI's DALL-E
- Code execution via E2B's code interpreter API
- Web search via Serper API
See details of supported tools in the oracle reference.
This project is divided into 3 parts in corresponding directories:
enclave
- this where the enclave is built and runadmin
- this is where the admin can interact with the encalve and verify attestation docverify
- minimal version of the admin to only validate the enclave's attestation doc
If you came here to just learn how to verify the enclave's attestation doc then see this README
- Setup an AWS Nitro Enclave-supported VM.
- Strongly recommended: go through the following tutorials before proceeding.
- The enclave comes with
libnsm.so
included and Python calls it over C bindings. libnsm
is a Rust shared object with a Python wrapper around it.
Setup the admin .env
file that is going to be sent to the enclave once it starts:
cd admin
cp .env.template .env # update the .env file with the correct values
Run the enclave:
cd enclave
./run_proxies.sh
./run_enclave.sh
Enclave data example:
{
"Measurements": {
"HashAlgorithm": "Sha384 { ... }",
"PCR0": "e11704780b078425d45dac5f72b523264406531ff6f4611aba908c320a20b5f2ec81404d21f6f0aef415adf2590d4129",
"PCR1": "52b919754e1643f4027eeee8ec39cc4a2cb931723de0c93ce5cc8d407467dc4302e86490c01c0d755acfe10dbf657546",
"PCR2": "b67f9d7d0a69f6eaf2cba87ffbe983eb4491dbb4ac4aef07528cd75327bfd8b5d5122c4f73c61c3836e57363306141cc"
}
}