Spaces:
Sleeping
Sleeping
File size: 502 Bytes
535fa20 a90ba86 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
[project]
name = "First_agent_HF"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Khalil Guetari", email = "[email protected]"},
]
dependencies = [
"markdownify",
"smolagents",
"requests",
"duckduckgo-search",
"pandas",
]
requires-python = "==3.12.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
tools = {call = "tests.tools.test_visit_webpage:test_visit_webpage_tool" }
|