File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,11 @@ class AgentState(TypedDict):
154
154
temperature = 0 ,
155
155
cohere_api_key = os .environ .get ("COHERE_API_KEY" , "not_provided" ),
156
156
)
157
- groq_llama3 = ChatGroq (model = "llama3-70b-8192" )
157
+ groq_llama3 = ChatGroq (
158
+ model = "llama3-70b-8192" ,
159
+ temperature = 0 ,
160
+ groq_api_key = os .environ .get ("GROQ_API_KEY" , "not_provided" ),
161
+ )
158
162
llm = gpt_3_5 .configurable_alternatives (
159
163
# This gives this field an id
160
164
# When configuring the end runnable, we can then use this id to configure this field
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ export function ChatWindow() {
328
328
< option value = "fireworks_mixtral" >
329
329
Mixtral (via Fireworks.ai)
330
330
</ option >
331
- < option value = "groq_llama3 " >
331
+ < option value = "groq_llama_3 " >
332
332
Llama 3 (via Groq.com)
333
333
</ option >
334
334
< option value = "cohere_command" > Cohere</ option >
You can’t perform that action at this time.
0 commit comments