2024-01-21 19:41:46 +08:00
|
|
|
import json
|
2024-01-21 19:15:27 +08:00
|
|
|
import os
|
2024-01-21 19:41:46 +08:00
|
|
|
from typing import Sequence
|
2024-01-21 19:15:27 +08:00
|
|
|
|
|
|
|
from openai import OpenAI
|
|
|
|
|
|
|
|
|
2024-01-21 19:41:46 +08:00
|
|
|
os.environ["OPENAI_BASE_URL"] = "http://192.168.0.1:8000/v1"
|
2024-01-21 19:15:27 +08:00
|
|
|
os.environ["OPENAI_API_KEY"] = "0"
|
|
|
|
|
|
|
|
|
2024-01-21 19:41:46 +08:00
|
|
|
def calculate_gpa(grades: Sequence[str], hours: Sequence[int]) -> float:
|
|
|
|
grade_to_score = {"A": 4, "B": 3, "C": 2}
|
|
|
|
total_score, total_hour = 0, 0
|
|
|
|
for grade, hour in zip(grades, hours):
|
|
|
|
total_score += grade_to_score[grade] * hour
|
|
|
|
total_hour += hour
|
|
|
|
return total_score / total_hour
|
|
|
|
|
|
|
|
|
|
|
|
tool_map = {"calculate_gpa": calculate_gpa}
|
|
|
|
|
|
|
|
|
2024-01-21 19:15:27 +08:00
|
|
|
if __name__ == "__main__":
|
|
|
|
client = OpenAI()
|
|
|
|
tools = [
|
|
|
|
{
|
|
|
|
"type": "function",
|
|
|
|
"function": {
|
2024-01-21 19:41:46 +08:00
|
|
|
"name": "calculate_gpa",
|
|
|
|
"description": "Calculate the Grade Point Average (GPA) based on grades and credit hours",
|
2024-01-21 19:15:27 +08:00
|
|
|
"parameters": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2024-01-21 19:41:46 +08:00
|
|
|
"grades": {"type": "array", "items": {"type": "string"}, "description": "The grades"},
|
|
|
|
"hours": {"type": "array", "items": {"type": "integer"}, "description": "The credit hours"},
|
2024-01-21 19:15:27 +08:00
|
|
|
},
|
2024-01-21 19:41:46 +08:00
|
|
|
"required": ["grades", "hours"],
|
2024-01-21 19:15:27 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
]
|
2024-01-21 19:41:46 +08:00
|
|
|
messages = []
|
|
|
|
messages.append({"role": "user", "content": "My grades are A, A, B, and C. The credit hours are 3, 4, 3, and 2."})
|
|
|
|
result = client.chat.completions.create(messages=messages, model="test", tools=tools)
|
|
|
|
tool_call = result.choices[0].message.tool_calls[0].function
|
|
|
|
name, arguments = tool_call.name, json.loads(tool_call.arguments)
|
|
|
|
messages.append(
|
|
|
|
{"role": "function", "content": json.dumps({"name": name, "argument": arguments}, ensure_ascii=False)}
|
2024-01-21 19:15:27 +08:00
|
|
|
)
|
2024-01-21 19:41:46 +08:00
|
|
|
tool_result = tool_map[name](**arguments)
|
|
|
|
messages.append({"role": "tool", "content": json.dumps({"gpa": tool_result}, ensure_ascii=False)})
|
|
|
|
result = client.chat.completions.create(messages=messages, model="test", tools=tools)
|
|
|
|
print(result.choices[0].message.content)
|
|
|
|
# Based on your grades and credit hours, your calculated Grade Point Average (GPA) is 3.4166666666666665.
|