Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/docs/architecture/cortex-db.md

This file was deleted.

25 changes: 25 additions & 0 deletions docs/docs/architecture/cortex-db.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: cortex.db
description: cortex.db Overview.
slug: "cortex-db"
---

import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";

:::warning
🚧 Cortex.cpp is currently under development. Our documentation outlines the intended behavior of Cortex, which may not yet be fully implemented in the codebase.
:::

This document outlines the architecture of the database designed to store and manage various types of entities and their associated metadata.

## Table Structure
### models Table
The `models` table is designed to hold metadata about various AI models. Below is the structure of the table:

| Column Name | Data Type | Description |
|--------------------|-----------|---------------------------------------------------------|
| model_id | TEXT | A unique identifier for each model (Primary Key). |
| author_repo_id | TEXT | The identifier for the repository where the model is stored. |
| branch_name | TEXT | The branch name in the repository that contains the model. |
| path_to_model_yaml | TEXT | The file path to the YAML configuration file for the model. |
Loading