Skip to content

Commit

Permalink
Merge pull request #924 from boxhock/fix-heurist-model-selection
Browse files Browse the repository at this point in the history
fix: use of Heurist model env vars
  • Loading branch information
shakkernerd authored Dec 9, 2024
2 parents 31143ae + a041953 commit 621f3f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,11 @@ export const models: Models = {
},
endpoint: "https://llm-gateway.heurist.xyz",
model: {
[ModelClass.SMALL]: "meta-llama/llama-3-70b-instruct",
[ModelClass.MEDIUM]: "meta-llama/llama-3-70b-instruct",
[ModelClass.LARGE]: "meta-llama/llama-3.1-405b-instruct",
[ModelClass.SMALL]: settings.SMALL_HEURIST_MODEL || "meta-llama/llama-3-70b-instruct",
[ModelClass.MEDIUM]: settings.MEDIUM_HEURIST_MODEL || "meta-llama/llama-3-70b-instruct",
[ModelClass.LARGE]: settings.LARGE_HEURIST_MODEL || "meta-llama/llama-3.1-405b-instruct",
[ModelClass.EMBEDDING]: "", //Add later,
[ModelClass.IMAGE]: "PepeXL",
[ModelClass.IMAGE]: settings.HEURIST_IMAGE_MODEL || "PepeXL",
},
},
[ModelProviderName.GALADRIEL]: {
Expand Down

0 comments on commit 621f3f4

Please sign in to comment.