chansung commited on
Commit
424f7e8
·
verified ·
1 Parent(s): 29bd3e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -59,9 +59,7 @@ async def echo(message, history, state, persona):
59
  model_content_stream = await client.models.generate_content_stream(
60
  model=args.model,
61
  contents=state['messages'],
62
- config=types.GenerateContentConfig(
63
- system_instruction=system_instruction, seed=args.seed
64
- ),
65
  )
66
  async for chunk in model_content_stream:
67
  response_chunks += chunk.text
 
59
  model_content_stream = await client.models.generate_content_stream(
60
  model=args.model,
61
  contents=state['messages'],
62
+ config=types.GenerateContentConfig(seed=args.seed),
 
 
63
  )
64
  async for chunk in model_content_stream:
65
  response_chunks += chunk.text