Initial working prototype, refs #1

This commit is contained in:
Simon Willison
2024-03-04 07:26:18 -08:00
commit f75f18e5f2
8 changed files with 448 additions and 0 deletions

6
tests/test_claude_3.py Normal file
View File

@@ -0,0 +1,6 @@
from llm.plugins import pm
def test_plugin_is_installed():
names = [mod.__name__ for mod in pm.get_plugins()]
assert "llm_claude_3" in names