pvanand commited on
Commit
fb8eac0
·
verified ·
1 Parent(s): 896331d

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -46,7 +46,7 @@ API_URL = "https://elevatics-code-execution-files-v5.hf.space"
46
 
47
  @tool(response_format="content_and_artifact")
48
  def execute_python(code: str, config: RunnableConfig):
49
- """Execute Python code in an IPython interactiveshell and return the output. The returned artifacts (if present) are automatically rendered in the UI and visible to the user. Available Libraries: plotly (default charting library),pandas,yfinance,numpy,geopandas,folium
50
  Args:
51
  code: Valid Python code with correct indentation and syntax including necessary imports.
52
  """
@@ -101,7 +101,7 @@ def execute_python(code: str, config: RunnableConfig):
101
  memory = MemorySaver()
102
  model = ChatOpenAI(model="gpt-4o", streaming=True)
103
  prompt = ChatPromptTemplate.from_messages([
104
- ("system", f"You are a Data Visualization assistant.You have access to an IPython interactiveshell 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. Today's date is \
107
  {datetime.now().strftime('%Y-%m-%d')}. The current folder contains the following files: {{collection_files}}"),
 
46
 
47
  @tool(response_format="content_and_artifact")
48
  def execute_python(code: str, config: RunnableConfig):
49
+ """Execute Python code in an jupyter notebook and return the output. The returned artifacts (if present) are automatically rendered in the UI and visible to the user. Available Libraries: plotly (default charting library),pandas,yfinance,numpy,geopandas,folium
50
  Args:
51
  code: Valid Python code with correct indentation and syntax including necessary imports.
52
  """
 
101
  memory = MemorySaver()
102
  model = ChatOpenAI(model="gpt-4o", streaming=True)
103
  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. Today's date is \
107
  {datetime.now().strftime('%Y-%m-%d')}. The current folder contains the following files: {{collection_files}}"),