-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
40 lines (33 loc) · 1.34 KB
/
main.py
File metadata and controls
40 lines (33 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
OpenAI Agents SDK Decoded - Main Entry Point
This is the main entry point for the OpenAI Agents SDK demonstration project.
It provides a simple welcome message and can be extended to showcase various features.
Author: OpenAI Agents SDK Team
"""
def main():
"""
Main entry point for the OpenAI Agents SDK demonstration project.
Displays a welcome message and can be extended to showcase various
agent capabilities and features.
"""
try:
print("=" * 60)
print("🚀 OpenAI Agents SDK Decoded")
print("=" * 60)
print("Welcome to the OpenAI Agents SDK demonstration project!")
print("This project contains various examples and tutorials.")
print("=" * 60)
print("📁 Available Modules:")
print(" • 01_agents/ - Basic agent examples")
print(" • 02_runner/ - Runner and execution examples")
print(" • 03_results/ - Result handling examples")
print(" • 04_stream/ - Streaming examples")
print(" • 05_tools/ - Function tools examples")
print(" • projects/ - Complete project examples")
print("=" * 60)
print("✅ Main entry point executed successfully!")
except Exception as e:
print(f"❌ Error in main execution: {e}")
raise
if __name__ == "__main__":
main()