Generate Insights
v.1.0.0
Overview
Step 0: Get ready
Step 1: Initialize the Client and set up your workspace
import os
import time
from io import StringIO
import pandas as pd
from shimoku import Client
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
OPENAI_ORG_ID = os.getenv("OPENAI_ORG_ID")
s = Client(
access_token=os.getenv("SHIMOKU_TOKEN"),
universe_id=os.getenv("UNIVERSE_ID"),
)
s.set_workspace(uuid=os.getenv("WORKSPACE_ID"))
menu_path_name = "insights"
s.set_menu_path(name=menu_path_name)
s.disable_caching()For steps 2 to 5, choose the tab below according to the task you want to perform.
Step 2: Prepare and Upload Your Data
Step 3: Execute the Generate Insight Function
Step 4: Monitor the Process
Step 5: Accessing the GPT insights
Step 2: Prepare and Upload Your Data
Step 3: Execute the Generate Insight Function
Step 4: Monitor the Process
Step 5: Accessing the GPT insights
Step 2: Prepare and Upload Your Data
Step 3: Execute the Generate Insight Function
Step 4: Monitor the Process
Step 5: Accessing the GPT insights
Last updated
Was this helpful?