├── .gitattributes ├── .gitignore ├── LICENSE ├── Paper └── The PyGen.pdf ├── README.md ├── app.py ├── data ├── AutoML │ ├── feature_descriptions_enhanced.json │ ├── feature_descriptions_enhanced.txt │ ├── package_descriptions_enhanced.txt │ ├── prompt_context.txt │ ├── reference_code.py │ └── user_prompt.txt ├── AutoSpeech │ ├── feature_descriptions_enhanced.json │ ├── feature_descriptions_enhanced.txt │ ├── package_descriptions_enhanced.txt │ ├── prompt_context.txt │ ├── reference.py │ └── user_prompt.txt ├── AutoVison │ ├── context_code.py │ ├── feature_descriptions_enhanced.json │ ├── feature_descriptions_enhanced.txt │ ├── package_descriptions_enhanced.txt │ ├── prompt_context.txt │ └── user_prompt.txt └── QEC │ ├── feature_descriptions_enhanced.json │ ├── feature_descriptions_enhanced.txt │ ├── package_descriptions_enhanced.txt │ ├── prompt_context.txt │ ├── reference_code.py │ └── user_prompt.txt ├── examples_doc ├── AutoML.md ├── AutoSpeech.md ├── AutoVision.md └── QEC.md ├── examples_package ├── AutoML_package_20241024075050 │ └── AutoML │ │ ├── AutoML.py │ │ ├── AutomateModelSelectionAndHyperparameterTuning.py │ │ ├── DataPreprocessing.py │ │ ├── ExplainabilityAndInterpretability.py │ │ ├── PerformanceEvaluation.py │ │ ├── __init__.py │ │ └── main.py ├── AutoSpeech_package_20241024085908 │ └── AutoSpeech │ │ ├── __init__.py │ │ ├── audiospeech_preprocessing.py │ │ ├── main.py │ │ ├── natural_language_processing.py │ │ └── speech_recognition.py ├── AutoVision_package_20241024085344 │ └── AutoVision │ │ ├── __init__.py │ │ ├── feature_extraction.py │ │ ├── image_preprocessing.py │ │ ├── main.py │ │ └── object_detection.py └── Quantum Error Correction_package_20241024080522 │ └── Quantum Error Detection and Correction │ ├── __init__.py │ └── main.py ├── figures ├── AutoML.svg ├── AutoSpeech.svg ├── AutoVision.svg ├── CodeTranslate.png ├── CoherenceAcrossDoc.png ├── DocEval.png ├── DocReviewLLM.png ├── FeatDescReviewbyLLM.png ├── HumanEvalPac.png ├── Litmaps.png ├── Logo.jpg ├── Logo.webp ├── MemFootprint.png ├── PacReviewLLM.png ├── PromptContextAnal.png ├── PromptEnhancementEval.png ├── PyScientistWorkflow.svg ├── Pygen Workflow.png ├── QEC.svg └── SpiderPac.png ├── pygen ├── CodeBLEU.py ├── code_reviewer.py ├── correlation.py ├── doc_coherent_score.py ├── documentation_eval.py ├── documentation_reviewer.py ├── enhancement_reviewer.py ├── generate_documentation.py ├── generate_package.py ├── js_conversion.py ├── package_groq.py ├── package_ollama.py ├── prompt_context.py ├── prompt_enhancer.py ├── stests.py ├── stests2.py └── translated_code_eval.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/LICENSE -------------------------------------------------------------------------------- /Paper/The PyGen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/Paper/The PyGen.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/app.py -------------------------------------------------------------------------------- /data/AutoML/feature_descriptions_enhanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/feature_descriptions_enhanced.json -------------------------------------------------------------------------------- /data/AutoML/feature_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/feature_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoML/package_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/package_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoML/prompt_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/prompt_context.txt -------------------------------------------------------------------------------- /data/AutoML/reference_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/reference_code.py -------------------------------------------------------------------------------- /data/AutoML/user_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoML/user_prompt.txt -------------------------------------------------------------------------------- /data/AutoSpeech/feature_descriptions_enhanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/feature_descriptions_enhanced.json -------------------------------------------------------------------------------- /data/AutoSpeech/feature_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/feature_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoSpeech/package_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/package_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoSpeech/prompt_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/prompt_context.txt -------------------------------------------------------------------------------- /data/AutoSpeech/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/reference.py -------------------------------------------------------------------------------- /data/AutoSpeech/user_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoSpeech/user_prompt.txt -------------------------------------------------------------------------------- /data/AutoVison/context_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/context_code.py -------------------------------------------------------------------------------- /data/AutoVison/feature_descriptions_enhanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/feature_descriptions_enhanced.json -------------------------------------------------------------------------------- /data/AutoVison/feature_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/feature_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoVison/package_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/package_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/AutoVison/prompt_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/prompt_context.txt -------------------------------------------------------------------------------- /data/AutoVison/user_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/AutoVison/user_prompt.txt -------------------------------------------------------------------------------- /data/QEC/feature_descriptions_enhanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/feature_descriptions_enhanced.json -------------------------------------------------------------------------------- /data/QEC/feature_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/feature_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/QEC/package_descriptions_enhanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/package_descriptions_enhanced.txt -------------------------------------------------------------------------------- /data/QEC/prompt_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/prompt_context.txt -------------------------------------------------------------------------------- /data/QEC/reference_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/reference_code.py -------------------------------------------------------------------------------- /data/QEC/user_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/data/QEC/user_prompt.txt -------------------------------------------------------------------------------- /examples_doc/AutoML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_doc/AutoML.md -------------------------------------------------------------------------------- /examples_doc/AutoSpeech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_doc/AutoSpeech.md -------------------------------------------------------------------------------- /examples_doc/AutoVision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_doc/AutoVision.md -------------------------------------------------------------------------------- /examples_doc/QEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_doc/QEC.md -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/AutoML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/AutoML.py -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/AutomateModelSelectionAndHyperparameterTuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/AutomateModelSelectionAndHyperparameterTuning.py -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/DataPreprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/DataPreprocessing.py -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/ExplainabilityAndInterpretability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/ExplainabilityAndInterpretability.py -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/PerformanceEvaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/PerformanceEvaluation.py -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import AutoML -------------------------------------------------------------------------------- /examples_package/AutoML_package_20241024075050/AutoML/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoML_package_20241024075050/AutoML/main.py -------------------------------------------------------------------------------- /examples_package/AutoSpeech_package_20241024085908/AutoSpeech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoSpeech_package_20241024085908/AutoSpeech/__init__.py -------------------------------------------------------------------------------- /examples_package/AutoSpeech_package_20241024085908/AutoSpeech/audiospeech_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoSpeech_package_20241024085908/AutoSpeech/audiospeech_preprocessing.py -------------------------------------------------------------------------------- /examples_package/AutoSpeech_package_20241024085908/AutoSpeech/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoSpeech_package_20241024085908/AutoSpeech/main.py -------------------------------------------------------------------------------- /examples_package/AutoSpeech_package_20241024085908/AutoSpeech/natural_language_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoSpeech_package_20241024085908/AutoSpeech/natural_language_processing.py -------------------------------------------------------------------------------- /examples_package/AutoSpeech_package_20241024085908/AutoSpeech/speech_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoSpeech_package_20241024085908/AutoSpeech/speech_recognition.py -------------------------------------------------------------------------------- /examples_package/AutoVision_package_20241024085344/AutoVision/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import AutoVision -------------------------------------------------------------------------------- /examples_package/AutoVision_package_20241024085344/AutoVision/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoVision_package_20241024085344/AutoVision/feature_extraction.py -------------------------------------------------------------------------------- /examples_package/AutoVision_package_20241024085344/AutoVision/image_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoVision_package_20241024085344/AutoVision/image_preprocessing.py -------------------------------------------------------------------------------- /examples_package/AutoVision_package_20241024085344/AutoVision/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoVision_package_20241024085344/AutoVision/main.py -------------------------------------------------------------------------------- /examples_package/AutoVision_package_20241024085344/AutoVision/object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/AutoVision_package_20241024085344/AutoVision/object_detection.py -------------------------------------------------------------------------------- /examples_package/Quantum Error Correction_package_20241024080522/Quantum Error Detection and Correction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/Quantum Error Correction_package_20241024080522/Quantum Error Detection and Correction/__init__.py -------------------------------------------------------------------------------- /examples_package/Quantum Error Correction_package_20241024080522/Quantum Error Detection and Correction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/examples_package/Quantum Error Correction_package_20241024080522/Quantum Error Detection and Correction/main.py -------------------------------------------------------------------------------- /figures/AutoML.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/AutoML.svg -------------------------------------------------------------------------------- /figures/AutoSpeech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/AutoSpeech.svg -------------------------------------------------------------------------------- /figures/AutoVision.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/AutoVision.svg -------------------------------------------------------------------------------- /figures/CodeTranslate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/CodeTranslate.png -------------------------------------------------------------------------------- /figures/CoherenceAcrossDoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/CoherenceAcrossDoc.png -------------------------------------------------------------------------------- /figures/DocEval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/DocEval.png -------------------------------------------------------------------------------- /figures/DocReviewLLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/DocReviewLLM.png -------------------------------------------------------------------------------- /figures/FeatDescReviewbyLLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/FeatDescReviewbyLLM.png -------------------------------------------------------------------------------- /figures/HumanEvalPac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/HumanEvalPac.png -------------------------------------------------------------------------------- /figures/Litmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/Litmaps.png -------------------------------------------------------------------------------- /figures/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/Logo.jpg -------------------------------------------------------------------------------- /figures/Logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/Logo.webp -------------------------------------------------------------------------------- /figures/MemFootprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/MemFootprint.png -------------------------------------------------------------------------------- /figures/PacReviewLLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/PacReviewLLM.png -------------------------------------------------------------------------------- /figures/PromptContextAnal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/PromptContextAnal.png -------------------------------------------------------------------------------- /figures/PromptEnhancementEval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/PromptEnhancementEval.png -------------------------------------------------------------------------------- /figures/PyScientistWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/PyScientistWorkflow.svg -------------------------------------------------------------------------------- /figures/Pygen Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/Pygen Workflow.png -------------------------------------------------------------------------------- /figures/QEC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/QEC.svg -------------------------------------------------------------------------------- /figures/SpiderPac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/figures/SpiderPac.png -------------------------------------------------------------------------------- /pygen/CodeBLEU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/CodeBLEU.py -------------------------------------------------------------------------------- /pygen/code_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/code_reviewer.py -------------------------------------------------------------------------------- /pygen/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/correlation.py -------------------------------------------------------------------------------- /pygen/doc_coherent_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/doc_coherent_score.py -------------------------------------------------------------------------------- /pygen/documentation_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/documentation_eval.py -------------------------------------------------------------------------------- /pygen/documentation_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/documentation_reviewer.py -------------------------------------------------------------------------------- /pygen/enhancement_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/enhancement_reviewer.py -------------------------------------------------------------------------------- /pygen/generate_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/generate_documentation.py -------------------------------------------------------------------------------- /pygen/generate_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/generate_package.py -------------------------------------------------------------------------------- /pygen/js_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/js_conversion.py -------------------------------------------------------------------------------- /pygen/package_groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/package_groq.py -------------------------------------------------------------------------------- /pygen/package_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/package_ollama.py -------------------------------------------------------------------------------- /pygen/prompt_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/prompt_context.py -------------------------------------------------------------------------------- /pygen/prompt_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/prompt_enhancer.py -------------------------------------------------------------------------------- /pygen/stests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/stests.py -------------------------------------------------------------------------------- /pygen/stests2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/stests2.py -------------------------------------------------------------------------------- /pygen/translated_code_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitsSaikat/PyGen/HEAD/pygen/translated_code_eval.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | groq 3 | google-generativeai 4 | --------------------------------------------------------------------------------