Skip to content

Commit 036cb0e

Browse files
committed
Remove debug parameter usage from chat_completions
1 parent 5d619c1 commit 036cb0e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/codealive_mcp_server.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,7 @@ async def chat_completions(
182182
messages: List[Dict[str, str]] = None,
183183
data_sources: List[Dict[str, str]] = None,
184184
stream: bool = True,
185-
conversation_id: Optional[str] = None,
186-
debug: bool = False
185+
conversation_id: Optional[str] = None
187186
) -> str:
188187
"""
189188
Streams chat completions from the CodeAlive API for code-aware conversations with knowledge of your codebase.
@@ -266,8 +265,7 @@ async def chat_completions(
266265
# Prepare the request payload
267266
request_data = {
268267
"messages": messages,
269-
"stream": stream,
270-
"debug": debug
268+
"stream": stream
271269
}
272270

273271
if conversation_id:

0 commit comments

Comments
 (0)