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

# Spaces

> Embeddings generated from a Corvic Table — the 'how' of turning data into vectors.

A **Space** is the embedding of a [Corvic Table](/concepts/feature-views). Where a Corvic Table defines *what* to represent, a Space defines *how* — the embedding method applied to produce vectors that power search, analysis, and agents.

<Note>
  A Space describes how to use the inputs in a Corvic Table to generate an embedding for each key defined by that table's entities.
</Note>

## Embedding types

The [Embed](/features/embed) action can produce different kinds of Space depending on your data:

| Type           | Use for                                                                                |
| -------------- | -------------------------------------------------------------------------------------- |
| **Semantic**   | Text — semantic search and RAG                                                         |
| **Tabular**    | Structured/tabular encodings                                                           |
| **Image**      | Image embeddings                                                                       |
| **Relational** | Graph/relationship structure, typically after [Graph Builder](/features/graph-builder) |

## What you can do with a Space

Once generated, a Space becomes an asset you can use to:

* **Search and retrieve** similar entities via vector search
* **Power agents** — agents reason over one or more spaces to answer questions
* **Analyze and export** embeddings for downstream use

<Warning>
  Regenerating a Space replaces its existing embeddings, which may affect dependent agents and applications.
</Warning>

## Generating Spaces

Spaces are created with the **Embed** action on the [workflow canvas](/features/workflows): pick a Corvic Table, choose an embedding type, and run. The output Space can then feed an agent.

## Related Concepts

<CardGroup cols={2}>
  <Card title="Corvic Tables" icon="eye" href="/concepts/feature-views">
    Define what to embed.
  </Card>

  <Card title="Embed" icon="layer-group" href="/features/embed">
    Generate spaces on the canvas.
  </Card>

  <Card title="Agents" icon="robot" href="/concepts/agents">
    Use spaces to power agents.
  </Card>

  <Card title="Graph Builder" icon="diagram-project" href="/features/graph-builder">
    Prepare data for relational embeddings.
  </Card>
</CardGroup>
