Merge pull request #871 from Legionof7/typofix

Changed spelling from "GTP" to "GPT". Also removed the 3 as this can run on GPT4.
This commit is contained in:
Richard Beales
2023-04-12 09:25:43 +01:00
committed by GitHub

View File

@@ -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,
@@ -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,