-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagent_workflow.py
128 lines (119 loc) · 5.4 KB
/
agent_workflow.py
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import json
import os
import sys
from openai import OpenAI
from dotenv import load_dotenv
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../'))
sys.path.append(project_root)
class Collaboration:
def __init__(self, client):
self.client = client
def assistant(self, input, context=None):
content = f"""Here is the prompt: {input}. You should be gender neutral when referring to people by pronouns.
Use your judgement to decide whether the pronoun fits the sentence properly to ensure inclusivity."""
if context:
content += f"Here are some context to help you be unbiased: {context}."
messages = [
{"role": "system", "content": "You are a an expert at gender pronouns."},
{"role": "user", "content": content}
]
try:
response = self.client.chat.completions.create(
model='gpt-4o-2024-08-06',
messages=messages,
response_format={
"type": "json_schema",
"json_schema": {
"name": "identifier",
"strict": True,
"schema": {
"type": "object",
"properties": {
"choose_statement": {"type": "boolean"},
"reasoning": {"type": "string"}
},
"required": ["choose_statement", "reasoning"],
"additionalProperties": False
}
}
}
)
return response.choices[0].message.content
except Exception as e:
print(f"Error in assistant: {e}")
return None
def language_analysist_agent(self, input, choose_statement, reasoning, context=None):
content = f"""Here is the input: {input}.
Here is a decision: {choose_statement}
Here is the reasoning to choose make that decision: {reasoning}
Decide whether that decision is correct if the pronoun fits the sentence. The pronoun should be inclusive of all people.
"""
if context:
content += f"Here are some context to help you identify bias and hate speech: {context}."
fixer_messages = [
{"role": "system", "content": "You are a smart sociologist."},
{"role": "user", "content": content}
]
try:
fixer_response = self.client.chat.completions.create(
model='gpt-4o-2024-08-06',
messages=fixer_messages,
response_format={
"type": "json_schema",
"json_schema": {
"name": "identifier",
"strict": True,
"schema": {
"type": "object",
"properties": {
"choose_statement": {"type": "boolean"},
"reasoning": {"type": "string"}
},
"required": ["choose_statement", "reasoning"],
"additionalProperties": False
}
}
}
)
return fixer_response.choices[0].message.content
except Exception as e:
print(f"Error in code_fixer_agent: {e}")
return choose_statement, reasoning
def optimizer_agent(self, input, choose_statement, reasoning, context=None):
content = f"""Here is the input: {input}.
Here is a decision: {choose_statement}
Here is the reasoning to choose make that decision: {reasoning}
Decide whether that decision is correct if the pronoun fits the sentence. Use the reasoning to finally make your choice on whether or not the pronoun fits the sentence or not.
The pronoun choice MUST BE inclusive.
"""
if context:
content += f"Here are some context to help you identify bias and hate speech: {context}."
optimizer_messages = [
{"role": "system", "content": "You are an expert at optimizing answers."},
{"role": "user", "content": content}
]
try:
optimizer_response = self.client.chat.completions.create(
model='gpt-4o-2024-08-06',
messages=optimizer_messages,
response_format={
"type": "json_schema",
"json_schema": {
"name": "identifier",
"strict": True,
"schema": {
"type": "object",
"properties": {
"choose_statement": {"type": "boolean"},
"reasoning": {"type": "string"}
},
"required": ["choose_statement", "reasoning"],
"additionalProperties": False
}
}
}
)
return optimizer_response.choices[0].message.content
except Exception as e:
print(f"Error in code_optimizer_agent: {e}")
return choose_statement, reasoning