Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leezhuuuuu authored Oct 7, 2024
1 parent 3f798cf commit 00dc786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# 配置变量
DEFAULT_API_URL = "https://api.groq.com/openai/v1/chat/completions"
DEFAULT_MODEL = "llama-3.1-70b-versatile"
DEFAULT_MODEL = "llama-3.2-90b-text-preview"

def make_api_call(messages, max_tokens, is_final_answer=False):
for attempt in range(3):
Expand Down Expand Up @@ -87,7 +87,7 @@ def generate_response(prompt):
def main():
st.set_page_config(page_title="g1 prototype", page_icon="🧠", layout="wide")

st.title("g1: Using Llama-3.1 70b on Groq to create o1-like reasoning chains")
st.title("g1: Using Llama-3.2-90b-text-preview on Groq to create o1-like reasoning chains")

st.markdown("""
This is an early prototype of using prompting to create o1-like reasoning chains to improve output accuracy. It is not perfect and accuracy has yet to be formally evaluated. It is powered by Groq so that the reasoning step is fast!
Expand Down

0 comments on commit 00dc786

Please sign in to comment.