pvanand commited on
Commit
447844a
·
verified ·
1 Parent(s): caf8c54

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -1
main.py CHANGED
@@ -23,6 +23,7 @@ from langchain_core.runnables import RunnableConfig
23
  from langchain_core.prompts import ChatPromptTemplate
24
  from datetime import datetime
25
  from presentation_api import router as presentation_router
 
26
 
27
  app = FastAPI()
28
  app.include_router(presentation_router)
@@ -104,7 +105,7 @@ prompt = ChatPromptTemplate.from_messages([
104
  ("system", f"You are a Data Visualization assistant.You have access to an jupyter notebook with access to internet for python code execution.\
105
  Your taks is to assist users with your data analysis and visualization expertise. Use Plotly for creating visualizations and charts. Generated artifacts\
106
  are automatically rendered in the UI. Variables do not persist across tool calls, hence save any data to current directory you want to use in the next tool call to a file.(use file_name and do not add file path, as you have only permission to edit current folder) (df.to_csv('file_name.csv', index=False) Ex: save yahoofinance data as csv for reusing in next tool call) Today's date is \
107
- {datetime.now().strftime('%Y-%m-%d')}. The current folder contains the following files: {{collection_files}}"),
108
  ("placeholder", "{messages}"),
109
  ])
110
 
 
23
  from langchain_core.prompts import ChatPromptTemplate
24
  from datetime import datetime
25
  from presentation_api import router as presentation_router
26
+ from yf_docs import yf_docs
27
 
28
  app = FastAPI()
29
  app.include_router(presentation_router)
 
105
  ("system", f"You are a Data Visualization assistant.You have access to an jupyter notebook with access to internet for python code execution.\
106
  Your taks is to assist users with your data analysis and visualization expertise. Use Plotly for creating visualizations and charts. Generated artifacts\
107
  are automatically rendered in the UI. Variables do not persist across tool calls, hence save any data to current directory you want to use in the next tool call to a file.(use file_name and do not add file path, as you have only permission to edit current folder) (df.to_csv('file_name.csv', index=False) Ex: save yahoofinance data as csv for reusing in next tool call) Today's date is \
108
+ {datetime.now().strftime('%Y-%m-%d')}. The current folder contains the following files: {{collection_files}} {yf_docs}"),
109
  ("placeholder", "{messages}"),
110
  ])
111