Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[swelancer] make agent use an async completion function #51

Merged
merged 1 commit into from
Mar 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions swelancer_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
from nanoeval_alcatraz.task_to_alcatraz_config import task_to_alcatraz_config
from nanoeval_alcatraz.alcatraz_computer_interface import AlcatrazComputerInterface

from openai import OpenAI
from openai import AsyncOpenAI
import os
import tiktoken


client = OpenAI(
client = AsyncOpenAI(
api_key=os.environ.get("OPENAI_API_KEY"), # This is the default and can be omitted
)

Expand All @@ -65,10 +65,10 @@ def trim_messages(messages: list[dict[str, Any]], max_tokens: int, model: str =
messages.pop(1)
return messages

def get_model_response(messages: list[dict[str, Any]]) -> str:
async def get_model_response(messages: list[dict[str, Any]]) -> str:
messages = trim_messages(messages, 110000)

chat_completion = client.chat.completions.create(
chat_completion = await client.chat.completions.create(
messages=messages, # type: ignore
model="gpt-4o",
)
Expand Down Expand Up @@ -126,7 +126,7 @@ async def run(self, task: ComputerTask) -> AsyncGenerator[Step | FinalResult, No
print(messages)

for remaining_turns in range(max_turns, 0, -1):
model_response = get_model_response(messages)
model_response = await get_model_response(messages)
print(model_response)

messages.append({"role": "assistant", "content": model_response})
Expand Down Expand Up @@ -182,4 +182,4 @@ async def run(self, task: ComputerTask) -> AsyncGenerator[Step | FinalResult, No
raise
yield FinalResultSuccessful(
grade=Grade(score=0, grader_log=f"Grading failed with error: {str(e)}")
)
)