Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async def search_coding_preferences(query: str) -> str:
return f"Error searching preferences: {str(e)}"

def create_starlette_app(mcp_server: Server, *, debug: bool = False) -> Starlette:
"""Create a Starlette application that can server the provied mcp server with SSE."""
"""Create a Starlette application that can serve the provided mcp server with SSE."""
sse = SseServerTransport("/messages/")

async def handle_sse(request: Request) -> None:
Expand Down
4 changes: 2 additions & 2 deletions node/mem0/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const memoryClient = new MemoryClient({ apiKey: MEM0_API_KEY });
const ADD_MEMORY_TOOL: Tool = {
name: 'add-memory',
description:
'Add a new memory. This method is called everytime the user informs anything about themselves, their preferences, or anything that has any relevent information whcih can be useful in the future conversation. This can also be called when the user asks you to remember something.',
'Add a new memory. This method is called everytime the user informs anything about themselves, their preferences, or anything that has any relevent information which can be useful in the future conversation. This can also be called when the user asks you to remember something.',
inputSchema: {
type: 'object',
properties: {
Expand Down Expand Up @@ -199,4 +199,4 @@ async function main() {
main().catch((error) => {
console.error('Fatal error in main():', error);
process.exit(1);
});
});