| | """ |
| | app.py β Enterprise SQL Agent (Gradio + smolagents + MCP) |
| | |
| | Provider priority |
| | ββββββββββββββββββ |
| | 1. OpenAI β set OPENAI_API_KEY (override model with OPENAI_MODEL, default = gpt-4o) |
| | 2. Gemini β set GOOGLE_API_KEY (override model with GOOGLE_MODEL, default = gemini-pro) |
| | 3. Hugging Face Inference fallback |
| | β’ HF_MODEL_ID (default = microsoft/Phi-3-mini-4k-instruct) |
| | β’ HF_API_TOKEN (only if the repo is gated) |
| | |
| | File layout |
| | ββββββββββββ |
| | app.py |
| | mcp_server.py |
| | connectors/ |
| | ββ salesforce_connector.py |
| | requirements.txt |
| | """ |
| |
|
| | import os, pathlib, json, pprint, gradio as gr |
| | from mcp import StdioServerParameters |
| | from smolagents import MCPClient, CodeAgent |
| | from smolagents.models import LiteLLMModel, InferenceClientModel |
| |
|
| | |
| | OPENAI_KEY = os.getenv("OPENAI_API_KEY") |
| | OPENAI_MODEL = os.getenv("OPENAI_MODEL", "gpt-4o") |
| |
|
| | GEMINI_KEY = os.getenv("GOOGLE_API_KEY") |
| | GEM_MODEL = os.getenv("GOOGLE_MODEL", "gemini-pro") |
| |
|
| | HF_MODEL_ID = os.getenv("HF_MODEL_ID", "microsoft/Phi-3-mini-4k-instruct") |
| | HF_TOKEN = os.getenv("HF_API_TOKEN") |
| |
|
| | if OPENAI_KEY: |
| | BASE_MODEL = LiteLLMModel(model_id=f"openai/{OPENAI_MODEL}", api_key=OPENAI_KEY) |
| | ACTIVE = f"OpenAI Β· {OPENAI_MODEL}" |
| | elif GEMINI_KEY: |
| | BASE_MODEL = LiteLLMModel(model_id=f"google/{GEM_MODEL}", api_key=GEMINI_KEY) |
| | ACTIVE = f"Gemini Β· {GEM_MODEL}" |
| | else: |
| | BASE_MODEL = InferenceClientModel(model_id=HF_MODEL_ID, hf_api_token=HF_TOKEN, timeout=90) |
| | ACTIVE = f"Hugging Face Β· {HF_MODEL_ID}" |
| |
|
| | |
| | SERVER_PATH = pathlib.Path(__file__).with_name("mcp_server.py") |
| |
|
| | |
| | def respond(message: str, history: list): |
| | """Prompt β CodeAgent β MCP tools β string reply.""" |
| | params = StdioServerParameters(command="python", args=[str(SERVER_PATH)]) |
| | with MCPClient(params) as tools: |
| | answer = CodeAgent(tools=tools, model=BASE_MODEL).run(message) |
| |
|
| | |
| | if not isinstance(answer, str): |
| | try: |
| | answer = json.dumps(answer, indent=2, ensure_ascii=False) |
| | except Exception: |
| | answer = pprint.pformat(answer, width=100) |
| |
|
| | history += [ |
| | {"role": "user", "content": message}, |
| | {"role": "assistant", "content": answer}, |
| | ] |
| | return history, history |
| |
|
| | |
| | with gr.Blocks(title="Enterprise SQL Agent") as demo: |
| | state = gr.State([]) |
| | gr.Markdown("## π’ Enterprise SQL Agent β query your data with natural language") |
| |
|
| | chat = gr.Chatbot(type="messages", label="Conversation") |
| | box = gr.Textbox( |
| | placeholder="e.g. Who are my inactive Northeast customers?", |
| | show_label=False, |
| | ) |
| | box.submit(respond, [box, state], [chat, state]) |
| |
|
| | with gr.Accordion("Example prompts", open=False): |
| | gr.Markdown( |
| | "* Who are my **Northeast** customers with no orders in 6 months?\n" |
| | "* List customers sorted by **LastOrderDate**.\n" |
| | "* Draft re-engagement emails for inactive accounts." |
| | ) |
| |
|
| | gr.Markdown(f"_Powered by MCP Β· smolagents Β· Gradio β’ Active model β **{ACTIVE}**_") |
| |
|
| | if __name__ == "__main__": |
| | demo.launch() |
| |
|