Hyperion - Client

Hyperion Agents

Written by Eric Anderson | Jun 25, 2025 5:38:23 PM

 

We’re excited to announce that the Hyperion Agents pre-beta is now live and available for you to use!

This early release gives you direct access to agentic workflows that let you chat directly with Hyperion data, request charts, run analyses, and explore our datasets simply by talking to them.

⚠️ Important: This is a pre-beta product and may contain bugs or unfinished features. Please help us improve by tagging any feedback or issues with #feedback in your chat requests.

 

πŸ”§ How to Get Started

Install the Agent

pip install synmax-agent
 
 

Import in Python

from synmax_agent.hyperion import *
 
 

Load Your API Key
Either use a .env file:

from dotenv import load_dotenv
load_dotenv()
 

Or pass your key directly:

c = ChatClient(access_key="your_api_key")
 
 

Retrieve Datasets

c.chat("get me all rig data in the haynesville for the last 24 mo, no analysis just the data")
 
 

Download Data or Charts

c.download_data(<id>)
c.download_chart(<id>)
 
 

Use a Specific Session

c = ChartClient(session_id="<session_id>")
 
 

See Your Session Content

c.list_charts()
c.list_data()
 
 

πŸ’‘ Example Prompts

  • "make me a time series chart of the rig activity" <- Generate a chart
  • "add frac crew activity to the chart" <- Modify a chart
  • "How is the DUC inventory related to rigs and fracs and how has this relationship evolved over time?" <- Perform analysis
  • "#feedback I would like to be able to download the python files generated by the agents" <- Send us feedback of things you would like to see or issues your having

πŸ“Š Datasets Currently Available

  • Rig Data

  • Frac Data

  • Daily Production

  • DUCs by Operator

  • Completions

  • Wells

  • Production by Well

πŸ”œ Coming Soon

  • More datasets: LTF, STF, fracked feet/day, operator classification

  • Upload your own datasets

  • Production Studio integration

  • Python file export

  • Hyperion Geo & custom front-end integration

We appreciate your partnership as we test and improve this next-generation tool. Please send any feedback through the #feedback feature, your input will directly shape future development.

Best,
-The SynMax Team
support@synmax.com
www.synmax.com