Getting Started
Prerequisites
Installation
1
pip install tempus-labs==1.0.02
OPENAI_API_KEY=your_api_key # Fill if you are using OpenAI
DEEPSEEK_API_KEY=your_api_key # Fill if you are using Deepseek3
from tempus.agents import QuantAIAgent
# Initialize with default settings (OpenAI)
agent = QuantAIAgent()
# Basic analysis
response = agent.chat("Analyze pump.fun market trends")
print(response)
# Streaming responses
for chunk in agent.chat_stream("What's happening with $ai16z?"):
chunk.pretty_print()Basic Concepts
QuantAIAgent
Market Analysis Tools
Data Sources
Next Steps
Last updated