File size: 298 Bytes
798c8f7 | 1 2 3 4 5 6 7 8 9 10 11 | import fireworks.client
fireworks.client.api_key = "ku9UYtzjSAATlcAstO8yrB89MzvDqJL3lGIkNgnVZ7URxPxK"
completion = fireworks.client.Completion.create(
model="accounts/fireworks/models/mistral-7b-instruct-4k",
prompt="",
stream=True,
n=1,
max_tokens=150,
temperature=0.1,
top_p=0.9,
) |