-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFinAgentBasic.py
61 lines (53 loc) · 2.2 KB
/
FinAgentBasic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import streamlit as st
from PIL import Image
from langchain.chat_models import ChatOpenAI
from langchain.experimental.plan_and_execute import PlanAndExecute, load_agent_executor, load_chat_planner
from langchain.llms import OpenAI
from langchain import SerpAPIWrapper, WikipediaAPIWrapper
from langchain.agents.tools import Tool
from typing import Optional, Type
import os
from dotenv import load_dotenv
load_dotenv()
serpapi_api_key = os.getenv("SERPAPI_API_KEY")
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
# Load your logo image (ensure it's in the same directory or provide the full path)
logo = Image.open('static/langchain parrot.png')
# Sidebar with a title, a logo and a slider
st.sidebar.title('Langchain Agents & Tools🦜')
st.sidebar.image(logo, use_column_width=True)
temperature = st.sidebar.slider('Select a value', min_value=0.0, max_value=1.0, value=0.2, step=0.1)
models = ["gpt-4", "gpt-4-0613", "gpt-4-32k", "gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-16k-0613"]
model = st.sidebar.selectbox("Select a GPT Model", models, index=0)
# Main window with a text box and an "Enter" button
st.title('Basic Agent/Tools Demo 🦜🔗')
user_input = st.text_input('Your financial question?')
enter_button = st.button('Enter')
wiki = WikipediaAPIWrapper()
search = SerpAPIWrapper()
tools = [
Tool(
name = "Search",
func=search.run,
description="useful for when you need to answer questions about current events"
),
Tool(
name="Wikipedia",
func=wiki.run,
description="useful for when you need to get info from wikipedia"
),
]
if enter_button:
if user_input:
st.write(f'You entered: {user_input}, Model is: {model}, with temperature: {temperature}')
model = ChatOpenAI(model=model, temperature=temperature)
planner = load_chat_planner(model)
executor = load_agent_executor(model, tools, verbose=True)
agent = PlanAndExecute(planner=planner, executor=executor, verbose=True)
try:
response = agent.run(user_input)
st.write(response)
except Exception as e:
print(f"Caught an exception: {e}")
else:
st.write('You did not enter anything.')