Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
creatorrr authored Apr 14, 2024
1 parent c5e0150 commit 1d52944
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions agents-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Schema

### Relation `agent_default_settings`
```
┌───┬────────────────────┬────────┬─────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼────────────────────┼────────┼─────────┼─────────────┤
Expand All @@ -16,8 +17,10 @@
│ 7 │ min_p │ False │ Float │ True │
│ 8 │ preset │ False │ String? │ True │
└───┴────────────────────┴────────┴─────────┴─────────────┘
```

### Relation `agent_docs`
```
┌───┬────────────┬────────┬───────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼────────────┼────────┼───────┼─────────────┤
Expand All @@ -26,8 +29,10 @@
│ 2 │ created_at │ False │ Float │ True │
│ 3 │ metadata │ False │ Json │ True │
└───┴────────────┴────────┴───────┴─────────────┘
```

### Relation `agent_functions`
```
┌───┬───────────────────┬────────┬────────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼───────────────────┼────────┼────────────┼─────────────┤
Expand All @@ -41,23 +46,27 @@
│ 7 │ updated_at │ False │ Float │ True │
│ 8 │ created_at │ False │ Float │ True │
└───┴───────────────────┴────────┴────────────┴─────────────┘
```

### Relation `agents`
```
┌───┬──────────────┬────────┬──────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼──────────────┼────────┼──────────┼─────────────┤
│ 0 │ developer_id │ True │ Uuid │ False │
│ 1 │ agent_id │ True │ Uuid │ False │
│ 2 │ name │ False │ String │ False │
│ 3 │ about │ False │ String │ False │
│ 4 │ instructions │ False │ ### Relation `String` │ True │
│ 4 │ instructions │ False │ [String] │ True │
│ 5 │ model │ False │ String │ True │
│ 6 │ created_at │ False │ Float │ True │
│ 7 │ updated_at │ False │ Float │ True │
│ 8 │ metadata │ False │ Json │ True │
└───┴──────────────┴────────┴──────────┴─────────────┘
```

### Relation `entries`
```
┌───┬─────────────┬────────┬─────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼─────────────┼────────┼─────────┼─────────────┤
Expand All @@ -72,8 +81,10 @@
│ 8 │ created_at │ False │ Float │ True │
│ 9 │ timestamp │ False │ Float │ True │
└───┴─────────────┴────────┴─────────┴─────────────┘
```

### Relation `information_snippets`
```
┌───┬───────────────────┬────────┬────────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼───────────────────┼────────┼────────────┼─────────────┤
Expand All @@ -84,8 +95,10 @@
│ 4 │ embed_instruction │ False │ String │ True │
│ 5 │ embedding │ False │ <F32;768>? │ True │
└───┴───────────────────┴────────┴────────────┴─────────────┘
```

### Relation `memories`
```
┌───┬──────────────────┬────────┬────────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼──────────────────┼────────┼────────────┼─────────────┤
Expand All @@ -94,39 +107,47 @@
│ 2 │ last_accessed_at │ False │ Float? │ True │
│ 3 │ timestamp │ False │ Float │ True │
│ 4 │ sentiment │ False │ Int │ True │
│ 5 │ entities │ False │ ### Relation `Json` │ True │
│ 5 │ entities │ False │ [Json] │ True │
│ 6 │ created_at │ False │ Float │ True │
│ 7 │ embedding │ False │ <F32;768>? │ True │
└───┴──────────────────┴────────┴────────────┴─────────────┘
```

### Relation `memory_lookup`
```
┌───┬───────────┬────────┬───────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼───────────┼────────┼───────┼─────────────┤
│ 0 │ agent_id │ True │ Uuid │ False │
│ 1 │ user_id │ True │ Uuid? │ True │
│ 2 │ memory_id │ True │ Uuid │ False │
└───┴───────────┴────────┴───────┴─────────────┘
```

### Relation `relations`
```
┌───┬──────────┬────────┬────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼──────────┼────────┼────────┼─────────────┤
│ 0 │ head │ True │ Uuid │ False │
│ 1 │ relation │ True │ String │ False │
│ 2 │ tail │ True │ Uuid │ False │
└───┴──────────┴────────┴────────┴─────────────┘
```

### Relation `session_lookup`
```
┌───┬────────────┬────────┬───────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼────────────┼────────┼───────┼─────────────┤
│ 0 │ agent_id │ True │ Uuid │ False │
│ 1 │ user_id │ True │ Uuid? │ True │
│ 2 │ session_id │ True │ Uuid │ False │
└───┴────────────┴────────┴───────┴─────────────┘
```

### Relation `sessions`
```
┌───┬──────────────┬────────┬──────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼──────────────┼────────┼──────────┼─────────────┤
Expand All @@ -138,8 +159,10 @@
│ 5 │ created_at │ False │ Float │ True │
│ 6 │ metadata │ False │ Json │ True │
└───┴──────────────┴────────┴──────────┴─────────────┘
```

### Relation `user_docs`
```
┌───┬────────────┬────────┬───────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼────────────┼────────┼───────┼─────────────┤
Expand All @@ -148,8 +171,10 @@
│ 2 │ created_at │ False │ Float │ True │
│ 3 │ metadata │ False │ Json │ True │
└───┴────────────┴────────┴───────┴─────────────┘
```

### Relation `users`
```
┌───┬──────────────┬────────┬────────┬─────────────┐
│ │ column │ is_key │ type │ has_default │
├───┼──────────────┼────────┼────────┼─────────────┤
Expand All @@ -161,4 +186,4 @@
│ 5 │ updated_at │ False │ Float │ True │
│ 6 │ metadata │ False │ Json │ True │
└───┴──────────────┴────────┴────────┴─────────────┘

```

0 comments on commit 1d52944

Please sign in to comment.