Skip to content

Commit

Permalink
Updated Supported LLM Region and Added Prerequisites
Browse files Browse the repository at this point in the history
  • Loading branch information
sgsshankar committed Jan 29, 2025
1 parent 0daedd4 commit f37a8ec
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ A dedicated section for constructing and deploying data pipelines and workflows

Before you begin, ensure you have met the following requirements:

- **Snowflake Account**: An active Snowflake account with Cortex functionalities enabled.
- **Snowflake Account**: Ensure you have an active Snowflake account in a region where Cortex functionalities are supported. For detailed information, refer to the [Availability Region documentation](https://docs.snowflake.com/en/user-guide/snowflake-cortex/llm-functions#availability).
- **Role Permissions**: ACCOUNTADMIN or equivalent role with permissions to create:
- Stages
- Databases
- Other resources
- **Python**: Version 3.7 or higher.
- **Streamlit**: Installed on your local machine.
- **Snowflake-CLI** : Install snowflake-cli through pip

## Installation

Expand Down Expand Up @@ -140,4 +141,3 @@ This is an Open Source repository and not an official Snowflake offering. This t
## Trademarks

This project may contain trademarks or logos for projects, products, or services. SNOWFLAKE is a trademark of Snowflake Computing, Inc in the United States and/or other countries. Any use of third-party trademarks or logos are subject to those third-party's policies.
16 changes: 13 additions & 3 deletions src/settings_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@
"stage": "SF_AI_STAGE"
},
"default_settings": {
"model": ["snowflake-arctic", "mistral-large", "reka-flash", "llama2-70b-chat", "gemma-7b", "mixtral-8x7b", "mistral-7b"],
"model":[
"claude-3-5-sonnet", "gemma-7b", "jamba-1.5-mini", "jamba-1.5-large",
"jamba-instruct", "llama2-70b-chat", "llama3-8b", "llama3-70b",
"llama3.1-8b", "llama3.1-70b", "llama3.1-405b", "llama3.2-1b",
"llama3.2-3b", "mistral-large", "mistral-large2", "mistral-7b",
"mixtral-8x7b", "reka-core", "reka-flash", "snowflake-arctic"
],
"fine_tune_models" : ["llama3-8b","llama3-70b","llama3.1-8b","llama3.1-70b","mistral-7b","mixtral-8x7b"],
"temperature_min": 0.0,
"temperature_max": 1.0,
Expand All @@ -20,11 +26,15 @@
"max_tokens_max": 2000,
"max_tokens": 200,
"guardrails": false,
"languages": ["en", "es", "fr", "de", "zh"],
"languages":[
"zh", "nl", "en", "fr", "de",
"hi", "it", "ja", "ko", "pl",
"pt", "ru", "es", "sv"
],
"logo_path" : "src/logo.webp",
"embeddings" :{
"EMBED_TEXT_768":["snowflake-arctic-embed-m-v1.5","snowflake-arctic-embed-m","e5-base-v2"],
"EMBED_TEXT_1024":["nv-embed-qa-4","multilingual-e5-large","voyage-multilingual-2"]
}
}
}
}

0 comments on commit f37a8ec

Please sign in to comment.