acecalisto3 commited on
Commit
58547fe
·
verified ·
1 Parent(s): ef6b241

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -161,7 +161,7 @@ def analyze_code(code: str) -> List[str]:
161
  def get_code_completion(prompt: str) -> str:
162
  # Generate code completion based on the current code input
163
  # Use max_new_tokens instead of max_length
164
- completions = code_generator(prompt, max_new_tokens=50, num_return_sequences=1)
165
  return completions[0]['generated_text']
166
 
167
  def lint_code(code: str) -> List[str]:
@@ -192,7 +192,7 @@ if __name__ == "__main__":
192
  if st.button("Run"):
193
  output = run_code(terminal_input)
194
  st.session_state.terminal_history.append((terminal_input, output))
195
- st.code(output, language="bash")
196
  if ai_guide_level != "No Assistance":
197
  st.write("Run commands here to add packages to your project. For example: pip install <package-name>.")
198
  if terminal_input and "install" in terminal_input:
 
161
  def get_code_completion(prompt: str) -> str:
162
  # Generate code completion based on the current code input
163
  # Use max_new_tokens instead of max_length
164
+ completions = code_generator(prompt, max_new_tokens=max_new_tokens, num_return_sequences=1)
165
  return completions[0]['generated_text']
166
 
167
  def lint_code(code: str) -> List[str]:
 
192
  if st.button("Run"):
193
  output = run_code(terminal_input)
194
  st.session_state.terminal_history.append((terminal_input, output))
195
+ st.code(output, language="bash", "java", "html","python", "solidity", "typescript", "streamlit", "gradio", "css", "xcode", "sql", "svg", "rust")
196
  if ai_guide_level != "No Assistance":
197
  st.write("Run commands here to add packages to your project. For example: pip install <package-name>.")
198
  if terminal_input and "install" in terminal_input: