AgentToolDemo / app.py
faisalmieaust's picture
Create app.py
c545fe9 verified
raw
history blame contribute delete
508 Bytes
import streamlit as st
import openai
from agentpro import create_model, ReactAgent
from agentpro.tools import AresInternetTool, UserInputTool, CalculateTool , SignalGeneratorAgent, SignalAnalyzerAgent, SignalDiagnosticAgent, ReportAgent # Adjust import path
# Set your API keys here or use Streamlit secrets
openai.api_key = st.secrets["OPENAI_API_KEY"]
ares_key = st.secrets["ARES_KEY"]
st.set_page_config(page_title="Demo Assistant", layout="wide")
st.title("🔍 Demo AI Agent")
st.header("Demo Agent")