Skip to content

Commit 8c29f72

Browse files
authored
Update verified-inference.md
1 parent 833ea71 commit 8c29f72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/docs/advanced/verified-inference.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ sidebar_position: 18
66

77
## Overview
88

9-
With verified inference, you can turn your Eliza agent fully verifiable on-chain on Solana with an OpenAI compatible TEE API. This proves that your agent’s thoughts and outputs are free from human control thus increasing the trust of the agent.
9+
With verified inference, you can turn your Eliza agent fully verifiable on-chain on Solana with an OpenAI-compatible TEE API. This proves that your agent’s thoughts and outputs are free from human control thus increasing the trust of the agent.
1010

1111
Compared to [fully deploying the agent in a TEE](https://elizaos.github.io/eliza/docs/advanced/eliza-in-tee/), this is a more light-weight solution which only verifies the inference calls and only needs a single line of code change.
1212

1313
The API supports all OpenAI models out of the box, including your fine-tuned models. The following guide will walk you through how to use verified inference API with Eliza.
1414

1515
## Background
1616

17-
The API is built on top of [Sentience Stack](https://github.com/galadriel-ai/Sentience), which cryptographically verifies agent's LLM inferences inside TEEs, posts those proofs on-chain on Solana, and makes the verified inference logs available to read and display to users.
17+
The API is built on top of [Sentience Stack](https://github.com/galadriel-ai/Sentience), which cryptographically verifies the agent's LLM inferences inside TEEs, posts those proofs on-chain on Solana, and makes the verified inference logs available to read and display to users.
1818

1919
Here’s how it works:
2020
![](https://i.imgur.com/SNwSHam.png)
@@ -23,7 +23,7 @@ Here’s how it works:
2323
2. The TEE securely processes the request by calling the LLM API.
2424
3. The TEE sends back the `{Message, Proof}` to the agent.
2525
4. The TEE submits the attestation with `{Message, Proof}` to Solana.
26-
5. The Proof of Sentience SDK is used to read the attestation from Solana and verify it with `{Message, Proof}`. The proof log can be added to the agent website/app.
26+
5. The Proof of Sentience SDK is used to read the attestation from Solana and verify it with `{Message, Proof}`. The proof log can be added to the agent's website/app.
2727

2828
To verify the code running inside the TEE, use instructions [from here](https://github.com/galadriel-ai/sentience/tree/main/verified-inference/verify).
2929

@@ -48,7 +48,7 @@ To verify the code running inside the TEE, use instructions [from here](https://
4848
```
4949
4. **Run your agent.**
5050

51-
Reminder how to run an agent is [here](https://elizaos.github.io/eliza/docs/quickstart/#create-your-first-agent).
51+
Reminder of how to run an agent is [here](https://elizaos.github.io/eliza/docs/quickstart/#create-your-first-agent).
5252
```bash
5353
pnpm start --character="characters/<your_character>.json"
5454
pnpm start:client

0 commit comments

Comments
 (0)