-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 chore(server.ts): change port variable case from lowercase port to …
…uppercase PORT to improve semantics ✨ feat(server.ts): add support for process.env.PORT environment variable to be able to run app on a configurable port The port variable is now named PORT, which improves consistency with the naming conventions as PORT is a constant. Support for an environment variable allows the application to be more flexible as it can now run on any available port specified via the process.env.PORT environment variable. 🐛 fix(thinking.py): update prompt string to use formatted constant for screenshot relevance to goal 🐛 fix(thinking.py): update prompt string to use formatted constant for listing commands for suggestion The prompt strings in the Think class have been updated to use formatted constants for better readability and maintainability. 🔧 chore(prompts1.py): add new prompt constants for screenshot relevance and listing commands for suggestion The prompts1.py file has been updated to include new constants for the prompt strings used in the Think class. 🔧 chore(requirements.txt): add orjson package for faster JSON processing The requirements.txt file has been updated to include the orjson package, which provides faster JSON processing compared to the default json package.
- Loading branch information
1 parent
225e59b
commit 48a4804
Showing
3 changed files
with
47 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
openai | ||
python-dotenv | ||
sqlalchemy | ||
black | ||
black | ||
orjson # faster json |