You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: Finalize some of the programming_language -> language migration (#490)
# Motivation
<!-- Why is this change necessary? -->
# Content
<!-- Please include a summary of the change -->
# Testing
<!-- How was the change tested? -->
# Please check the following before marking your PR as ready for review
- [ ] I have added tests for my changes
- [ ] I have updated the documentation or added new documentation as
needed
Copy file name to clipboardExpand all lines: src/codegen/extensions/mcp/codebase_agent.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,8 @@
11
11
12
12
mcp=FastMCP(
13
13
"codebase-agent-mcp",
14
-
instructions="Use this server to access any information from your codebase. This tool can provide information ranging from AST Symbol details and information from across the codebase. Use this tool for all questions, queries regarding your codebase.",
14
+
instructions="""Use this server to access any information from your codebase. This tool can provide information ranging from AST Symbol details and information from across the codebase.
15
+
Use this tool for all questions, queries regarding your codebase.""",
15
16
)
16
17
17
18
@@ -27,7 +28,7 @@ def query_codebase(
27
28
ifnotos.path.exists(codebase_dir):
28
29
return {"error": f"Codebase directory '{codebase_dir}' does not exist. Please provide a valid directory path."}
0 commit comments