From 6ae7cc2497a78893a3cb57344453c58ebf4a6c8c Mon Sep 17 00:00:00 2001 From: Josh Payne Date: Tue, 4 Jul 2023 11:55:48 -0700 Subject: [PATCH] readme, benchmark requirements --- README.md | 11 +++++++++++ benchmarks/flask-cpp/source/requirements.txt | 2 ++ benchmarks/flask-fastapi/source/requirements.txt | 2 ++ benchmarks/flask-nodejs/source/requirements.txt | 2 ++ benchmarks/flask-rust/source/requirements.txt | 2 ++ 5 files changed, 19 insertions(+) create mode 100644 benchmarks/flask-cpp/source/requirements.txt create mode 100644 benchmarks/flask-fastapi/source/requirements.txt create mode 100644 benchmarks/flask-nodejs/source/requirements.txt create mode 100644 benchmarks/flask-rust/source/requirements.txt diff --git a/README.md b/README.md index 126fa43..624115e 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,17 @@ GPT-Migrate is currently in development alpha and is not yet ready for productio We're actively looking to build up a robust benchmark repository. If you have a codebase that you'd like to contribute, please open a PR! The current benchmarks were built from scratch: REST API apps which have a few endpoints and dependency files. +## 🧗 Roadmap + +Below are improvements on the to-do list. If you'd like to knock any of these or others out, please submit a PR :) + +- Add logic for model input size limiting based on the window size. See issue #2. +- Add functionality to let the LLM request access to dependency functions in other files as it debugs. +- Enable internet search requests as the model debugs. +- Add unit tests to the entire project for better reliability and CI/CD +- Add more benchmark examples +- Identify and compile language-specific issues + solve for them + ## 📣 Call to Action We're looking for talented contributors. Whether you have a particular passion about a specific language or framework, want to help in creating a more robust test suite, or generally have interesting ideas on how to make this better, we'd love to have you! diff --git a/benchmarks/flask-cpp/source/requirements.txt b/benchmarks/flask-cpp/source/requirements.txt new file mode 100644 index 0000000..2d14203 --- /dev/null +++ b/benchmarks/flask-cpp/source/requirements.txt @@ -0,0 +1,2 @@ +flask +bcrypt \ No newline at end of file diff --git a/benchmarks/flask-fastapi/source/requirements.txt b/benchmarks/flask-fastapi/source/requirements.txt new file mode 100644 index 0000000..2d14203 --- /dev/null +++ b/benchmarks/flask-fastapi/source/requirements.txt @@ -0,0 +1,2 @@ +flask +bcrypt \ No newline at end of file diff --git a/benchmarks/flask-nodejs/source/requirements.txt b/benchmarks/flask-nodejs/source/requirements.txt new file mode 100644 index 0000000..2d14203 --- /dev/null +++ b/benchmarks/flask-nodejs/source/requirements.txt @@ -0,0 +1,2 @@ +flask +bcrypt \ No newline at end of file diff --git a/benchmarks/flask-rust/source/requirements.txt b/benchmarks/flask-rust/source/requirements.txt new file mode 100644 index 0000000..2d14203 --- /dev/null +++ b/benchmarks/flask-rust/source/requirements.txt @@ -0,0 +1,2 @@ +flask +bcrypt \ No newline at end of file