Skip to content

Commit

Permalink
chore(migrations): Increase agent's about length to 5000 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
HamadaSalhab committed Jan 4, 2025
1 parent a09ad92 commit 47a9ce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memory-store/migrations/000004_agents.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS agents (
),
about TEXT CONSTRAINT ct_agents_about_length CHECK (
about IS NULL
OR length(about) <= 1000
OR length(about) <= 5000
),
instructions TEXT[] DEFAULT ARRAY[]::TEXT[],
model TEXT NOT NULL,
Expand Down

0 comments on commit 47a9ce4

Please sign in to comment.