|
import streamlit as st |
|
from transformers import pipeline |
|
from ldclient import LDClient, Config, Context |
|
import os |
|
|
|
|
|
ld_sdk_key = os.getenv("LAUNCHDARKLY_SDK_KEY") |
|
|
|
|
|
ld_client = LDClient(Config(ld_sdk_key)) |
|
|
|
|
|
def get_model_config(): |
|
flag_key = "swap-sentiment-models" |
|
|
|
context = Context.builder("context-key-123abc").name("Sandy").build() |
|
flag_variation = ld_client.variation(flag_key, context, default={}) |
|
|
|
model_id = flag_variation.get("modelID", "distilbert-base-uncased") |
|
return model_id |
|
|
|
|
|
|
|
st.title("Sentiment Analysis Demo with AI Model Flags") |
|
|
|
user_input = st.text_area("Enter text for sentiment analysis:") |
|
|
|
if st.button("Analyze"): |
|
model_id = get_model_config() |
|
model = pipeline("sentiment-analysis", model=model_id) |
|
|
|
|
|
st.write(f"Using model: {model_id}") |
|
|
|
|
|
result = model(user_input) |
|
st.write(result) |
|
|
|
|
|
ld_client.close() |
|
|