Skip to content

Commit

Permalink
update groq llama3 to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceunx committed Aug 6, 2024
1 parent 14d858e commit 013b672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_server/routers/groq.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def get_content(data):
@router.post("/chat", status_code=200)
async def chat(request: Request, prompt: Prompt):

data = {"model": "llama3-70b-8192", "stream": True}
data = {"model": "llama-3.1-70b-versatile", "stream": True}
less_messages = []
if len(prompt.messages) > 4:
less_messages = [prompt.messages[0]] + prompt.messages[-3:]
Expand Down

0 comments on commit 013b672

Please sign in to comment.