forked from onlyphantom/llm-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_assignment_01.py
More file actions
87 lines (71 loc) · 2.75 KB
/
project_assignment_01.py
File metadata and controls
87 lines (71 loc) · 2.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#A simple get_ticker_price agent.
import os
from dotenv import load_dotenv
import requests
import json
from agents import Agent, Runner, function_tool
load_dotenv()
SECTORS_API_KEY= os.getenv("SECTORS_API_KEY")
if not SECTORS_API_KEY:
raise ValueError("SECTORS_API_KEY environment variable is required")
headers = {"Authorization": SECTORS_API_KEY}
def validate_ticker(ticker: str, country: str) -> bool:
"""Validate ticker format based on exchange requirements"""
if not ticker or not isinstance(ticker, str):
return False
country = country.lower()
if country == "malaysia":
# KLSE tickers are typically 4-digit numeric codes
return len(ticker) == 4 and ticker.isdigit()
elif country == "singapore":
# SGX tickers are alphanumeric, typically 3 or 4 characters
return len(ticker) <= 4 and ticker.isalnum()
elif country == "indonesia":
# IDX tickers are typically 4-letter codes
return len(ticker) == 4 and ticker.isalpha()
return False
def retrieve_from_endpoint(url: str) -> dict:
try:
response = requests.get(url, headers=headers)
response.raise_for_status()
data = response.json()
except requests.exceptions.HTTPError as err:
raise SystemExit(err)
return json.dumps(data)
@function_tool
def get_ticker_price(ticker: str, country: str) -> str:
"""
Get company overview from Singapore Exchange (SGX) or Indonesia Exchange (IDX)
"""
# Validate ticker format for the specific exchange
if not validate_ticker(ticker, country):
raise ValueError(f"Invalid ticker format for {country}: {ticker}")
assert country.lower() in ["indonesia", "singapore", "malaysia"], "Country must be either Indonesia, Singapore, or Malaysia"
if country.lower() == "indonesia":
url = f"https://api.sectors.app/v1/company/report/{ticker}/?sections=overview"
elif country.lower() == "singapore":
url = f"https://api.sectors.app/v1/sgx/company/report/{ticker}/"
elif country.lower() == "malaysia":
url = f"https://api.sectors.app/v1/klse/company/report/{ticker}/"
try:
return retrieve_from_endpoint(url)
except Exception as e:
print(f"Error occurred for {ticker}: {e}")
return None
ticker_explore_agent = Agent(
name="ticker_explore_agent",
instructions="Show the company stock price based on the ticker provided. Please provide the price change percentage and the current price. Do not provide any other information.",
tools=[get_ticker_price],
tool_use_behavior="run_llm_again"
)
async def main():
query = "Show me company's stocks price that listed on Singapore Exchange with ticker 'D05'."
result = await Runner.run(
ticker_explore_agent,
query
)
print(f"👨: {query}")
print(f"🤖: {result.final_output}")
if __name__ == "__main__":
import asyncio
asyncio.run(main())