Skip to content

Commit

Permalink
Merge pull request #19 from leonvanbokhorst/smol-agent
Browse files Browse the repository at this point in the history
feat: Implement Creative Writing Agent with SmolagentS
  • Loading branch information
leonvanbokhorst authored Jan 4, 2025
2 parents 1ac6d9e + 6b0d84b commit b49c643
Show file tree
Hide file tree
Showing 6 changed files with 2,088 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ models/
*.pth
*.ckpt
*.png
*.txt


# Logs
*.log
Expand Down
50 changes: 26 additions & 24 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,41 @@ classifiers = [
"Programming Language :: Python :: 3.9",
]
dependencies = [
"torch>=2.0.0",
"transformers>=4.30.0",
"accelerate>=0.25.0",
"anthropic>=0.20.0",
"black>=23.3.0",
"chromadb>=0.4.22",
"datasets>=2.14.0",
"faiss-cpu>=1.8.0",
"fastapi>=0.100.0",
"ray>=2.5.0",
"redis>=5.0.1",
"pydantic>=2.5.3",
"numpy>=1.24.0",
"scipy>=1.10.0",
"pytest>=7.0.0",
"flake8>=6.0.0",
"huggingface-hub>=0.16.0",
"hypothesis>=6.75.3",
"black>=23.3.0",
"isort>=5.12.0",
"mypy>=1.3.0",
"flake8>=6.0.0",
"scikit-learn>=1.2.0",
"tqdm>=4.65.0",
"langchain-community>=0.0.13",
"langchain-core>=0.1.17",
"langchain-openai>=0.0.5",
"matplotlib>=3.7.0",
"mypy>=1.3.0",
"networkx>=3.1",
"numpy>=1.24.0",
"ollama>=0.1.0",
"huggingface-hub>=0.16.0",
"openai>=1.9.0",
"pydantic>=2.5.3",
"pytest>=7.0.0",
"python-dotenv>=1.0.0",
"ray>=2.5.0",
"redis>=5.0.1",
"scikit-learn>=1.2.0",
"scipy>=1.10.0",
"seaborn>=0.12.2",
"sentence-transformers>=2.2.0",
"smolagents>=0.1.3",
"torch>=2.0.0",
"torchmetrics>=0.11.0",
"seaborn>=0.12.2",
"datasets>=2.14.0",
"anthropic>=0.20.0",
"openai>=1.9.0",
"faiss-cpu>=1.8.0",
"networkx>=3.1",
"tqdm>=4.65.0",
"transformers>=4.30.0",
"typing-extensions>=4.5.0",
"langchain-core>=0.1.17",
"langchain-community>=0.0.13",
"langchain-openai>=0.0.5",
"chromadb>=0.4.22",
]

[project.optional-dependencies]
Expand Down
Loading

0 comments on commit b49c643

Please sign in to comment.