sarim commited on
Commit
13e4629
·
1 Parent(s): 2616e6e

update llama model

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -19,7 +19,7 @@ api_key = os.getenv("api_key")
19
  data = []
20
 
21
 
22
- model = GroqModel("llama3-groq-70b-8192-tool-use-preview", api_key = api_key)
23
 
24
  async def resume_AI(data):
25
  agent = Agent(model=model,
@@ -59,7 +59,6 @@ async def resume_AI(data):
59
 
60
  )
61
 
62
- print(data)
63
  result = agent.run_sync(user_prompt=f"Improve this resume: {data}")
64
  result_1 = cover_letter_agent.run_sync(user_prompt= f"Write cover letter for this resume {result.data}")
65
  st.markdown(result.data)
 
19
  data = []
20
 
21
 
22
+ model = GroqModel("llama-3.3-70b-versatile", api_key = api_key)
23
 
24
  async def resume_AI(data):
25
  agent = Agent(model=model,
 
59
 
60
  )
61
 
 
62
  result = agent.run_sync(user_prompt=f"Improve this resume: {data}")
63
  result_1 = cover_letter_agent.run_sync(user_prompt= f"Write cover letter for this resume {result.data}")
64
  st.markdown(result.data)