mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-27 16:30:47 +00:00
9 lines
276 B
Python
9 lines
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) |