Skip to content

Commit

Permalink
Merge pull request #1054 from julep-ai/dev
Browse files Browse the repository at this point in the history
dev -> main
  • Loading branch information
HamadaSalhab authored Jan 14, 2025
2 parents c768ba5 + 476a2eb commit 9eb5b17
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 0 deletions.
6 changes: 6 additions & 0 deletions llm-proxy/litellm-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ model_list:
api_key: os.environ/OPENROUTER_API_KEY
tags: ["paid"]

- model_name: "l3.1-euryale-70b"
litellm_params:
model: "openrouter/sao10k/l3.1-euryale-70b"
api_key: os.environ/OPENROUTER_API_KEY
tags: ["paid"]

- model_name: "l3.3-euryale-70b"
litellm_params:
model: "openrouter/sao10k/l3.3-euryale-70b"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
BEGIN;

-- Drop the updated constraints
ALTER TABLE agents
DROP CONSTRAINT IF EXISTS ct_agents_about_length;

ALTER TABLE tools
DROP CONSTRAINT IF EXISTS ct_tools_description_length;

ALTER TABLE files
DROP CONSTRAINT IF EXISTS ct_files_description_length;

ALTER TABLE tasks
DROP CONSTRAINT IF EXISTS ct_tasks_description_length;

-- Restore original constraints
ALTER TABLE tools
ADD CONSTRAINT ct_tools_description_length CHECK (
description IS NULL
OR length(description) <= 1000
);

ALTER TABLE files
ADD CONSTRAINT ct_files_description_length CHECK (
description IS NULL
OR length(description) <= 1000
);

ALTER TABLE tasks
ADD CONSTRAINT ct_tasks_description_length CHECK (
description IS NULL
OR length(description) <= 1000
);

ALTER TABLE agents
ADD CONSTRAINT ct_agents_about_length CHECK (
about IS NULL
OR length(about) <= 5000
);

COMMIT;
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
BEGIN;

-- Drop existing constraints
ALTER TABLE agents
DROP CONSTRAINT IF EXISTS ct_agents_about_length;

ALTER TABLE tools
DROP CONSTRAINT IF EXISTS ct_tools_description_length;

ALTER TABLE files
DROP CONSTRAINT IF EXISTS ct_files_description_length;

ALTER TABLE tasks
DROP CONSTRAINT IF EXISTS ct_tasks_description_length;

-- Add new constraints with updated length
ALTER TABLE agents
ADD CONSTRAINT ct_agents_about_length CHECK (
about IS NULL
OR length(about) <= 16000
);

ALTER TABLE tools
ADD CONSTRAINT ct_tools_description_length CHECK (
description IS NULL
OR length(description) <= 16000
);

ALTER TABLE files
ADD CONSTRAINT ct_files_description_length CHECK (
description IS NULL
OR length(description) <= 16000
);

ALTER TABLE tasks
ADD CONSTRAINT ct_tasks_description_length CHECK (
description IS NULL
OR length(description) <= 16000
);

COMMIT;

0 comments on commit 9eb5b17

Please sign in to comment.