Skip to content

Commit

Permalink
Changed spelling from "GTP" to "GPT". Also removed the 3 as this can …
Browse files Browse the repository at this point in the history
…run on GPT4.
  • Loading branch information
Legionof7 authored Apr 11, 2023
1 parent e62a3be commit 9725c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/agent_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def create_agent(task, prompt, model):

messages = [{"role": "user", "content": prompt}, ]

# Start GTP3 instance
# Start GPT instance
agent_reply = create_chat_completion(
model=model,
messages=messages,
Expand Down Expand Up @@ -41,7 +41,7 @@ def message_agent(key, message):
# Add user message to message history before sending to agent
messages.append({"role": "user", "content": message})

# Start GTP3 instance
# Start GPT instance
agent_reply = create_chat_completion(
model=model,
messages=messages,
Expand Down

0 comments on commit 9725c72

Please sign in to comment.