> ## Documentation Index
> Fetch the complete documentation index at: https://helloluciallc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Live Wiring and Environment Truth

<Note>
  This page explains which live systems Eval Labs should call and how to verify it.
</Note>

***

## Current environment rule

Eval Labs production currently targets active Lucia Development:

```text theme={"dark"}
Eval Labs → api-dev.hellolucia.ai
```

For promoted validation:

```text theme={"dark"}
Eval Labs → api-staging.hellolucia.ai
```

Do not confuse these.

Confirmed routing history:

```text theme={"dark"}
Uninterrupted Staging-target configuration began: 2026-05-04T16:21:35Z
Development correction live-verified: 2026-07-10
```

That interval proves deployed routing drift. It does not prove that every historical run individually used Staging, and no historical run should be rewritten without its own captured provenance.

***

## Active dev endpoint

```text theme={"dark"}
https://api-dev.hellolucia.ai/admin/operator-focus
```

This is the correct endpoint when testing current dev Engine changes.

***

## Netlify environment variable

Eval Labs uses a Vite environment variable:

```text theme={"dark"}
VITE_LUCIA_EVAL_ENDPOINT
```

For active dev testing, it should be:

```text theme={"dark"}
https://api-dev.hellolucia.ai/admin/operator-focus
```

Because Vite bakes environment variables into the frontend bundle, changing the Netlify variable requires a redeploy.

***

## Render CORS allowlist

The dev Engine must allow Eval Labs as an origin.

Render dev Engine environment variable:

```text theme={"dark"}
ADMIN_ALLOWED_ORIGINS
```

It must include:

```text theme={"dark"}
https://evaluationlabs.ai
https://www.evaluationlabs.ai
https://dev.hellolucia.ai
https://lucia-admin-dev.onrender.com
```

***

## How to verify the live path

In browser DevTools → Network, run a custom prompt and click `operator-focus`.

Expected:

```text theme={"dark"}
Request URL: https://api-dev.hellolucia.ai/admin/operator-focus
Status: 200 OK
```

If the production app points to Staging outside an explicitly authorized promoted-validation window, treat it as a target mismatch and do not trust the run as Development evidence.

If it has a CORS error, the Engine allowlist is wrong.

This Network check proves request routing only. A `200 OK` does not prove that a model was invoked or identify the provider-resolved model.

For runtime/model proof, use the owner-only **Lucia Runtime Verification** panel. It reads `meta.runtime` and `meta.model_runtime` from the same `/admin/operator-focus` response and shows:

```text theme={"dark"}
resolved endpoint
classified and Engine environments
Engine commit SHA
configured model
provider-resolved model
model invoked
deterministic path
fallback used
verification timestamp
```

The live 2026-07-10 verification returned `Verified`: configured and resolved model `gpt-5.6-sol`, model invoked `true`, deterministic path `false`, and fallback `false`.

***

## Clean Devtools connections and queries

<img src="https://mintcdn.com/lucia-7204fd1f/iSwf61fx0HoguRx0/images/eval-labs/devtools-operator-focus-network.png?fit=max&auto=format&n=iSwf61fx0HoguRx0&q=85&s=3808e9199e841d421872f5be984757dc" alt="devtools-operator-focus-network" width="2318" height="494" data-path="images/eval-labs/devtools-operator-focus-network.png" />

*DevTools Network proof that deployed Eval Labs is calling the active dev Engine and receiving a 200 response.*

***

<img src="https://mintcdn.com/lucia-7204fd1f/iSwf61fx0HoguRx0/images/eval-labs/devtools-response-headers.png?fit=max&auto=format&n=iSwf61fx0HoguRx0&q=85&s=6e483bbf0cbd2afae00978515d3656fc" alt="devtools-response-headers" width="2578" height="1520" data-path="images/eval-labs/devtools-response-headers.png" />

*DevTools Network request header.*

***

<img src="https://mintcdn.com/lucia-7204fd1f/iSwf61fx0HoguRx0/images/eval-labs/devtools-request-headers.png?fit=max&auto=format&n=iSwf61fx0HoguRx0&q=85&s=a4ea306886c27f5ae406024fc4adf840" alt="devtools-request-headers" width="1620" height="734" data-path="images/eval-labs/devtools-request-headers.png" />

*DevTools Network response header.*
