-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Description
Describe the bug
After adding the semantic kernel import to a python project running on FASTAPI from the VSCode Debugger this breaks pymeta (which is a required dependency). This prevents all debugging for our project. Seems there is a conflict between VSCode debugger and semantic kernel
To Reproduce
Steps to reproduce the behavior:
- Add Semantic Kernel as a python dependency
- Add 'import semantic_kernel' to a file
- Launch FastAPI using uvicorn (-m uvicorn api-hosting-lambda.src.app:app --reload --port 8002) from a launch config (see below)
- pymetic error
Exception has occurred: ParseError (note: full exception trace is shown but execution is paused at: _G_many_2)
(7, [('expected', 'letter or digit', None)])
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 259, in _G_many_2 (Current frame)
_G_apply_1, lastError = self._apply(self.rule_letterOrDigit, "letterOrDigit", [])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 262, in rule_name
_G_many_3, lastError = self.many(_G_many_2)
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 604, in _G_lookahead_2
_G_apply_1, lastError = self._apply(self.rule_name, "name", [])
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 608, in rule_rule
_G_lookahead_3, lastError = self.lookahead(_G_lookahead_2)
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 641, in _G_many_1
_G_apply_1, lastError = self._apply(self.rule_rule, "rule", [])
File "/pymeta_generated_code/pymeta_grammar__Grammar.py", line 644, in rule_grammar
_G_many_2, lastError = self.many(_G_many_1)
File "/home/ubuntu/GenerativeAIGit/koch-gpt/api-hosting-lambda/src/koch_ai.py", line 8, in
import semantic_kernel
File "/home/ubuntu/GenerativeAIGit/koch-gpt/api-hosting-lambda/src/conversations_handler.py", line 26, in
from koch_ai import KochAIChatBot
File "/home/ubuntu/GenerativeAIGit/koch-gpt/api-hosting-lambda/src/app.py", line 6, in
from conversations_handler import (
File "", line 1, in
pymeta.runtime.ParseError: (7, [('expected', 'letter or digit', None)])
Expected behavior
FastAPI should start up in the debugging session within VSCode
Screenshots
VSCode debugging Launch config
{
"name": "API Hosting on FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"api-hosting-lambda.src.app:app",
"--reload",
"--port",
"8002"
],
"cwd": "${workspaceFolder}/api-hosting-lambda/src",
"env": {
"JSON_LOGS": "0",
"LOG_LEVEL": "debug"
},
"jinja": true,
"justMyCode": true
}
Platform
- OS: Ubuntu
- IDE: VSCode
- Language: Python
- Source: FastAPI project
Additional context
Starting the app with the same command 'poetry run python -m uvicorn app:app --reload --port 8002' outside of a debugger works fine.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status