mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
9 lines
No EOL
276 B
Python
9 lines
No EOL
276 B
Python
import os
|
|
from litellm import completion
|
|
|
|
os.environ["SNOWFLAKE_ACCOUNT_ID"] = "YOUR ACCOUNT"
|
|
os.environ["SNOWFLAKE_JWT"] = "YOUR JWT"
|
|
|
|
messages = [{"role": "user", "content": "Write me a poem about the blue sky"}]
|
|
|
|
completion(model="snowflake/mistral-7b", messages=messages) |