Ashhar
commited on
Commit
·
10613ff
1
Parent(s):
9f9844d
change page title
Browse files
app.py
CHANGED
|
@@ -17,6 +17,14 @@ from clients.openRouter import OpenRouter
|
|
| 17 |
from dotenv import load_dotenv
|
| 18 |
load_dotenv()
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
ModelType = Literal["GPT_4o", "GPT_o1", "CLAUDE", "LLAMA", "DEEPSEEK", "DEEPSEEK_R1", "DEEPSEEK_R1_DISTILL"]
|
| 21 |
ModelConfig = TypedDict("ModelConfig", {
|
| 22 |
"client": OpenAI | anthropic.Anthropic,
|
|
|
|
| 17 |
from dotenv import load_dotenv
|
| 18 |
load_dotenv()
|
| 19 |
|
| 20 |
+
# Set up page configuration
|
| 21 |
+
st.set_page_config(
|
| 22 |
+
page_title="SQL Query Assistant",
|
| 23 |
+
page_icon="💾",
|
| 24 |
+
layout="wide",
|
| 25 |
+
initial_sidebar_state="expanded"
|
| 26 |
+
)
|
| 27 |
+
|
| 28 |
ModelType = Literal["GPT_4o", "GPT_o1", "CLAUDE", "LLAMA", "DEEPSEEK", "DEEPSEEK_R1", "DEEPSEEK_R1_DISTILL"]
|
| 29 |
ModelConfig = TypedDict("ModelConfig", {
|
| 30 |
"client": OpenAI | anthropic.Anthropic,
|