We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 685e349 + 8e3fd0d commit 54c020bCopy full SHA for 54c020b
code_graph/__init__.py
@@ -2,7 +2,6 @@
2
from .llm import ask
3
from .graph import *
4
from .entities import *
5
-from .app import create_app
6
from .code_coverage import *
7
from .analyzers.source_analyzer import *
8
from .auto_complete import prefix_search
code_graph/app.py
@@ -315,3 +315,5 @@ def chat():
315
316
return jsonify(response), 200
317
318
+if __name__ == '__main__':
319
+ app.run()
0 commit comments