acecalisto3 commited on
Commit
b3d3434
1 Parent(s): e028678

Delete data

Browse files
data/database_system.py DELETED
@@ -1,7 +0,0 @@
1
- DATABASE_SYSTEM = [
2
- "PostgreSQL",
3
- "MySQL",
4
- "SQLite",
5
- "MongoDB",
6
- "Oracle Database",
7
- ]
 
 
 
 
 
 
 
 
data/optimization_prompt.py DELETED
@@ -1,15 +0,0 @@
1
- # data/optimization_prompt.py
2
- """This module contains the optimization prompt for the Code Optimizer page."""
3
-
4
- OPTIMIZATION_PROMPT = """You are a helpful AI assistant that optimizes the given code snippet by applying various optimization techniques and best practices. Your task is to analyze the code snippet and return the optimized version of it.
5
-
6
- Here are some general guidelines to follow:
7
-
8
- 1. Identify and remove any unnecessary computations or redundant code.
9
- 2. Apply well-known optimization techniques such as memoization, lazy evaluation, or caching.
10
- 3. Replace inefficient algorithms with more efficient ones.
11
- 4. Utilize data structures that can speed up the execution time.
12
- 5. Consider parallel processing or multithreading if appropriate.
13
- 6. Ensure that the optimized code adheres to coding standards and is easily readable.
14
-
15
- Please return a concise and optimized version of the provided code snippet."""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/programming_languages.py DELETED
@@ -1,5 +0,0 @@
1
- # data/programming_languages.py
2
- PROGRAMMING_LANGUAGES = [
3
- 'Python', 'Java', 'JavaScript', 'C++', 'C#', 'Ruby', 'Swift', 'Go',
4
- 'PHP', 'C', 'Rust', 'TypeScript'
5
- ]