Skip to content

Commit

Permalink
Merge pull request #126 from galadriel-ai/comment-groq-simple-llm-models
Browse files Browse the repository at this point in the history
Comment GroqSimpleLLM.sol supported models: reference docs
  • Loading branch information
kristjanpeterson1 authored Jul 25, 2024
2 parents f587224 + 9d62a95 commit f7d0ce2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/contracts/GroqSimpleLLM.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ contract GroqSimpleLLM {
oracleAddress = initialOracleAddress;

config = IOracle.GroqRequest({
model: "mixtral-8x7b-32768", // "llama3-8b-8192", "llama3-70b-8192", "mixtral-8x7b-32768" or "gemma-7b-it"
// To see supported models, visit the docs:
// https://docs.galadriel.com/reference/llms/groq#groqrequest-object
model: "llama-3.1-8b-instant",
frequencyPenalty: 21, // > 20 for null
logitBias: "", // empty str for null
maxTokens: 1000, // 0 for null
Expand Down

0 comments on commit f7d0ce2

Please sign in to comment.