Skip to content

Commit

Permalink
edits
Browse files Browse the repository at this point in the history
  • Loading branch information
isahers1 committed Jul 16, 2024
1 parent 532a12f commit 782dc78
Show file tree
Hide file tree
Showing 3 changed files with 492 additions and 160 deletions.
22 changes: 21 additions & 1 deletion langchain_benchmarks/model_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,27 @@
"model": "gpt-4-32k-0314",
},
),
RegisteredModel(
provider="openai",
name="gpt-4o",
description="GPT-4o base model",
type="chat",
params={
"model": "gpt-4o",
},
),
]

_FIREWORKS_MODELS = [
RegisteredModel(
provider="fireworks",
name="firefunction-v2",
type="chat",
description="Fireworks function calling model",
params={
"model": "accounts/fireworks/models/firefunction-v2",
},
),
RegisteredModel(
provider="fireworks",
name="llama-v2-7b-chat-fw",
Expand Down Expand Up @@ -207,7 +225,9 @@
description="Mistral MoE 8x7B Instruct v0.1 model with Sparse "
"Mixture of Experts. Fine tuned for instruction following",
type="llm",
params={"model": "accounts/fireworks/models/mixtral-8x7b-instruct"},
params={
"model": "accounts/fireworks/models/mixtral-8x7b-instruct"
},
),
]

Expand Down
Loading

0 comments on commit 782dc78

Please sign in to comment.