Skip to content
Closed
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
4 changes: 4 additions & 0 deletions memlayer/wrappers/claude.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,3 +805,7 @@ def close(self):
except Exception as e:
print(f"Warning: Error during cleanup: {e}")


# Legacy alias for backward compatibility
ClaudeWrapper = Claude

3 changes: 3 additions & 0 deletions memlayer/wrappers/gemini.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,3 +758,6 @@ def close(self):
print(f"Warning: Error during cleanup: {e}")


# Legacy alias for backward compatibility
GeminiWrapper = Gemini

4 changes: 4 additions & 0 deletions memlayer/wrappers/ollama.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,3 +700,7 @@ def close(self):
self._graph_storage.close()
except Exception as e:
print(f"Warning: Error during cleanup: {e}")


# Legacy alias for backward compatibility
OllamaWrapper = Ollama
4 changes: 4 additions & 0 deletions memlayer/wrappers/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,3 +817,7 @@ def close(self):
self._graph_storage.close()
except Exception as e:
print(f"Warning: Error during cleanup: {e}")


# Legacy alias for backward compatibility
OpenAIWrapper = OpenAI
Loading