diff --git a/LICENSE b/LICENSE index 261eeb9e..7482465d 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [2024] [RowBoat Labs] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/apps/copilot/copilot.py b/apps/copilot/copilot.py index f2396fe5..428d824c 100644 --- a/apps/copilot/copilot.py +++ b/apps/copilot/copilot.py @@ -6,6 +6,7 @@ import json from lib import AgentContext, PromptContext, ToolContext, ChatContext openai_client = OpenAI() +MODEL_NAME = "o1" # OpenAI model name class UserMessage(BaseModel): role: Literal["user"] @@ -503,7 +504,7 @@ User: {last_message.content} print(json.dumps(updated_msgs, indent=2)) response = openai_client.chat.completions.create( - model="gpt-4o", + model=MODEL_NAME, messages=updated_msgs, response_format={"type": "json_object"} ) diff --git a/apps/docs/docs/license.md b/apps/docs/docs/license.md index 7761e551..a38ae9b9 100644 --- a/apps/docs/docs/license.md +++ b/apps/docs/docs/license.md @@ -190,7 +190,7 @@ RowBoat is available under the [Apache 2.0 License](https://github.com/rowboatla same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [2024] [RowBoat Labs] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.