summaryrefslogtreecommitdiff
path: root/notebooks/testing.ipynb
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-04-09 00:14:00 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-04-09 00:14:00 +0200
commit91ddb3672e514fa9824609ff047d7cab0c65631a (patch)
tree009fd82618588d2960b5207128e86875f73cccdc /notebooks/testing.ipynb
parentd487ef8b04cc7f5ac1491f0638f902fe2abe5ac5 (diff)
Refactor
Diffstat (limited to 'notebooks/testing.ipynb')
-rw-r--r--notebooks/testing.ipynb53
1 files changed, 52 insertions, 1 deletions
diff --git a/notebooks/testing.ipynb b/notebooks/testing.ipynb
index 18827fc..bcaa613 100644
--- a/notebooks/testing.ipynb
+++ b/notebooks/testing.ipynb
@@ -98,10 +98,61 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 5,
"id": "05f7068c-b4c6-47b2-ac62-79c021838500",
"metadata": {},
"outputs": [],
+ "source": [
+ "from rag.generator import get_generator"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "31dd3e7a-1d6c-4cc6-8ffe-f83478f95875",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "x = get_generator(\"ollama\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "749c58c4-5250-464c-b4f4-b5b4a00be3b3",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "y = get_generator(\"ollama\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "c59ece14-11e0-416c-afad-bc2ff6a526ec",
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "x is y"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "0e664d3d-a787-45e5-8b71-8e5e0f348443",
+ "metadata": {},
+ "outputs": [],
"source": []
}
],