Skip to content

Commit b49c643

Browse files
Merge pull request #19 from leonvanbokhorst/smol-agent
feat: Implement Creative Writing Agent with SmolagentS
2 parents 1ac6d9e + 6b0d84b commit b49c643

6 files changed

Lines changed: 2088 additions & 25 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ models/
5252
*.pth
5353
*.ckpt
5454
*.png
55-
*.txt
55+
5656

5757
# Logs
5858
*.log

pyproject.toml

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -19,39 +19,41 @@ classifiers = [
1919
"Programming Language :: Python :: 3.9",
2020
]
2121
dependencies = [
22-
"torch>=2.0.0",
23-
"transformers>=4.30.0",
22+
"accelerate>=0.25.0",
23+
"anthropic>=0.20.0",
24+
"black>=23.3.0",
25+
"chromadb>=0.4.22",
26+
"datasets>=2.14.0",
27+
"faiss-cpu>=1.8.0",
2428
"fastapi>=0.100.0",
25-
"ray>=2.5.0",
26-
"redis>=5.0.1",
27-
"pydantic>=2.5.3",
28-
"numpy>=1.24.0",
29-
"scipy>=1.10.0",
30-
"pytest>=7.0.0",
29+
"flake8>=6.0.0",
30+
"huggingface-hub>=0.16.0",
3131
"hypothesis>=6.75.3",
32-
"black>=23.3.0",
3332
"isort>=5.12.0",
34-
"mypy>=1.3.0",
35-
"flake8>=6.0.0",
36-
"scikit-learn>=1.2.0",
37-
"tqdm>=4.65.0",
33+
"langchain-community>=0.0.13",
34+
"langchain-core>=0.1.17",
35+
"langchain-openai>=0.0.5",
3836
"matplotlib>=3.7.0",
37+
"mypy>=1.3.0",
38+
"networkx>=3.1",
39+
"numpy>=1.24.0",
3940
"ollama>=0.1.0",
40-
"huggingface-hub>=0.16.0",
41+
"openai>=1.9.0",
42+
"pydantic>=2.5.3",
43+
"pytest>=7.0.0",
4144
"python-dotenv>=1.0.0",
45+
"ray>=2.5.0",
46+
"redis>=5.0.1",
47+
"scikit-learn>=1.2.0",
48+
"scipy>=1.10.0",
49+
"seaborn>=0.12.2",
4250
"sentence-transformers>=2.2.0",
51+
"smolagents>=0.1.3",
52+
"torch>=2.0.0",
4353
"torchmetrics>=0.11.0",
44-
"seaborn>=0.12.2",
45-
"datasets>=2.14.0",
46-
"anthropic>=0.20.0",
47-
"openai>=1.9.0",
48-
"faiss-cpu>=1.8.0",
49-
"networkx>=3.1",
54+
"tqdm>=4.65.0",
55+
"transformers>=4.30.0",
5056
"typing-extensions>=4.5.0",
51-
"langchain-core>=0.1.17",
52-
"langchain-community>=0.0.13",
53-
"langchain-openai>=0.0.5",
54-
"chromadb>=0.4.22",
5557
]
5658

5759
[project.optional-dependencies]

0 commit comments

Comments
 (0)