-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from Snowflake-Labs/jsummer/add-looker-support
Jsummer/add looker support
- Loading branch information
Showing
14 changed files
with
1,744 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import streamlit as st | ||
|
||
from admin_apps.partner.partner_utils import configure_partner_semantic | ||
|
||
|
||
@st.dialog("Partner Semantic Support", width="large") | ||
def partner_semantic_setup() -> None: | ||
""" | ||
Renders the partner semantic setup dialog with instructions. | ||
""" | ||
|
||
st.write( | ||
""" | ||
Have an existing semantic layer in a partner tool that's integrated with Snowflake? | ||
See the below instructions for integrating your partner semantic specs into Cortex Analyst's semantic file. | ||
""" | ||
) | ||
configure_partner_semantic() | ||
|
||
|
||
def show() -> None: | ||
""" | ||
Runs partner setup dialog. | ||
""" | ||
partner_semantic_setup() |
Oops, something went wrong.