Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| from azure.cosmos import CosmosClient, PartitionKey, exceptions | |
| import os | |
| import pandas as pd | |
| st.set_page_config(layout="wide") | |
| # Cosmos DB configuration | |
| ENDPOINT = "https://acae-afd.documents.azure.com:443/" | |
| SUBSCRIPTION_ID = "003fba60-5b3f-48f4-ab36-3ed11bc40816" | |
| # You'll need to set these environment variables or use Azure Key Vault | |
| DATABASE_NAME = os.environ.get("COSMOS_DATABASE_NAME") | |
| CONTAINER_NAME = os.environ.get("COSMOS_CONTAINER_NAME") | |
| Key = os.environ.get("Key") | |
| def insert_record(record): | |
| try: | |
| response = container.create_item(body=record) | |
| return True, response | |
| except exceptions.CosmosHttpResponseError as e: | |
| return False, f"HTTP error occurred: {str(e)}. Status code: {e.status_code}" | |
| except Exception as e: | |
| return False, f"An unexpected error occurred: {str(e)}" | |
| def call_stored_procedure(record): | |
| try: | |
| response = container.scripts.execute_stored_procedure( | |
| sproc="processPrompt", | |
| params=[record], | |
| partition_key=record['id'] | |
| ) | |
| return True, response | |
| except exceptions.CosmosHttpResponseError as e: | |
| error_message = f"HTTP error occurred: {str(e)}. Status code: {e.status_code}" | |
| return False, error_message | |
| except Exception as e: | |
| error_message = f"An unexpected error occurred: {str(e)}" | |
| return False, error_message | |
| def fetch_all_records(): | |
| try: | |
| query = "SELECT * FROM c" | |
| items = list(container.query_items(query=query, enable_cross_partition_query=True)) | |
| return pd.DataFrame(items) | |
| except exceptions.CosmosHttpResponseError as e: | |
| st.error(f"HTTP error occurred while fetching records: {str(e)}. Status code: {e.status_code}") | |
| return pd.DataFrame() | |
| except Exception as e: | |
| st.error(f"An unexpected error occurred while fetching records: {str(e)}") | |
| return pd.DataFrame() | |
| def delete_record(name, id): | |
| try: | |
| container.delete_item(item=id, partition_key=id) | |
| return True, f"Successfully deleted record with name: {name} and id: {id}" | |
| except exceptions.CosmosResourceNotFoundError: | |
| return False, f"Record with id {id} not found. It may have been already deleted." | |
| except exceptions.CosmosHttpResponseError as e: | |
| return False, f"HTTP error occurred: {str(e)}. Status code: {e.status_code}" | |
| except Exception as e: | |
| return False, f"An unexpected error occurred: {str(e)}" | |
| # Streamlit app | |
| st.title("π Cosmos DB Record Management") | |
| # Initialize session state for selected records | |
| if 'selected_records' not in st.session_state: | |
| st.session_state.selected_records = [] | |
| # Login section | |
| if 'logged_in' not in st.session_state: | |
| st.session_state.logged_in = False | |
| if not st.session_state.logged_in: | |
| st.subheader("π Login") | |
| input_key = Key # Use the predefined Key instead of asking for user input | |
| if st.button("π Login"): | |
| if input_key: | |
| st.session_state.primary_key = input_key | |
| st.session_state.logged_in = True | |
| st.rerun() | |
| else: | |
| st.error("Invalid key. Please check your environment variables.") | |
| else: | |
| # Initialize Cosmos DB client | |
| try: | |
| client = CosmosClient(ENDPOINT, credential=st.session_state.primary_key) | |
| database = client.get_database_client(DATABASE_NAME) | |
| container = database.get_container_client(CONTAINER_NAME) | |
| except exceptions.CosmosHttpResponseError as e: | |
| st.error(f"Failed to connect to Cosmos DB. HTTP error: {str(e)}. Status code: {e.status_code}") | |
| st.stop() | |
| except Exception as e: | |
| st.error(f"An unexpected error occurred while connecting to Cosmos DB: {str(e)}") | |
| st.stop() | |
| # Fetch and display all records | |
| st.subheader("π All Records") | |
| df = fetch_all_records() | |
| if df.empty: | |
| st.write("No records found in the database.") | |
| else: | |
| for index, row in df.iterrows(): | |
| col1, col2, col3 = st.columns([3, 1, 1]) | |
| with col1: | |
| st.write(f"ID: {row['id']}, Name: {row['name']}") | |
| with col2: | |
| key = f"select_{row['id']}" | |
| if st.checkbox("Select", key=key, value=row.to_dict() in st.session_state.selected_records): | |
| if row.to_dict() not in st.session_state.selected_records: | |
| st.session_state.selected_records.append(row.to_dict()) | |
| else: | |
| st.session_state.selected_records = [r for r in st.session_state.selected_records if r['id'] != row['id']] | |
| with col3: | |
| if st.button(f"Delete", key=f"delete_{row['id']}"): | |
| success, message = delete_record(row['name'], row['id']) | |
| if success: | |
| st.success(message) | |
| st.rerun() | |
| else: | |
| st.error(message) | |
| # Display selected records | |
| st.subheader("Selected Records") | |
| if st.session_state.selected_records: | |
| for record in st.session_state.selected_records: | |
| st.markdown(f"- Name: {record['name']}, ID: {record['id']}") | |
| else: | |
| st.write("No records selected") | |
| # Input fields for new record | |
| st.subheader("π Enter New Record Details") | |
| new_id = st.text_input("ID") | |
| new_name = st.text_input("Name") | |
| new_document = st.text_area("Document") | |
| new_evaluation_text = st.text_area("Evaluation Text") | |
| new_evaluation_score = st.number_input("Evaluation Score", min_value=0, max_value=100, step=1) | |
| col1, col2 = st.columns(2) | |
| # Insert Record button | |
| with col1: | |
| if st.button("πΎ Insert Record"): | |
| record = { | |
| "id": new_id, | |
| "name": new_name, | |
| "document": new_document, | |
| "evaluationText": new_evaluation_text, | |
| "evaluationScore": new_evaluation_score | |
| } | |
| success, response = insert_record(record) | |
| if success: | |
| st.success("β Record inserted successfully!") | |
| st.json(response) | |
| else: | |
| st.error(f"β Failed to insert record: {response}") | |
| st.rerun() | |
| # Call Procedure button | |
| with col2: | |
| if st.button("π§ Call Procedure"): | |
| record = { | |
| "id": new_id, | |
| "name": new_name, | |
| "document": new_document, | |
| "evaluationText": new_evaluation_text, | |
| "evaluationScore": new_evaluation_score | |
| } | |
| success, response = call_stored_procedure(record) | |
| if success: | |
| st.success("β Stored procedure executed successfully!") | |
| st.json(response) | |
| else: | |
| st.error(f"β Failed to execute stored procedure: {response}") | |
| # Logout button | |
| if st.button("πͺ Logout"): | |
| st.session_state.logged_in = False | |
| st.session_state.selected_records.clear() # Clear selected records on logout | |
| st.rerun() | |
| # Display connection info | |
| st.sidebar.subheader("π Connection Information") | |
| st.sidebar.text(f"Endpoint: {ENDPOINT}") | |
| st.sidebar.text(f"Subscription ID: {SUBSCRIPTION_ID}") | |
| st.sidebar.text(f"Database: {DATABASE_NAME}") | |
| st.sidebar.text(f"Container: {CONTAINER_NAME}") |