acecalisto3 commited on
Commit
ed007fc
·
verified ·
1 Parent(s): 058ba74

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -59,10 +59,7 @@ class CodeGenerationTool(Tool):
59
  # This is a simplified example, real implementation would use a code generation model
60
  language = arguments.get("language", "python")
61
  code = arguments.get("code", "print('Hello, World!')")
62
- return {"output": f"
63
-
64
-
65
- {language}\n{code}\n
66
 
67
  class DataRetrievalTool(Tool):
68
  def __init__(self):
 
59
  # This is a simplified example, real implementation would use a code generation model
60
  language = arguments.get("language", "python")
61
  code = arguments.get("code", "print('Hello, World!')")
62
+ return {"output": f"""{language}{code}"""
 
 
 
63
 
64
  class DataRetrievalTool(Tool):
65
  def __init__(self):