matthewfarant commited on
Commit
7e99c90
·
verified ·
1 Parent(s): c80a1a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -1,3 +1,12 @@
 
 
 
 
 
 
 
 
 
1
  # Initialize LLM and Tools
2
  local_llm = 'llama3.1'
3
  llama3 = ChatOllama(model=local_llm, temperature=1)
 
1
+ from langchain.prompts import PromptTemplate
2
+ from langchain_core.output_parsers import JsonOutputParser, StrOutputParser
3
+ from langchain_community.chat_models import ChatOllama
4
+ from langchain_core.tools import Tool
5
+ from langchain_google_community import GoogleSearchAPIWrapper
6
+ from firecrawl import FirecrawlApp
7
+
8
+ import gradio as gr
9
+
10
  # Initialize LLM and Tools
11
  local_llm = 'llama3.1'
12
  llama3 = ChatOllama(model=local_llm, temperature=1)