Create tool_config.py
Browse files- tool_config.py +22 -0
tool_config.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# tool_config.py
|
| 2 |
+
|
| 3 |
+
# Define the tool names to load
|
| 4 |
+
tool_names = [
|
| 5 |
+
"Chris4K/random-character-tool",
|
| 6 |
+
"Chris4K/text-generation-tool",
|
| 7 |
+
"Chris4K/sentiment-tool",
|
| 8 |
+
"Chris4K/token-counter-tool",
|
| 9 |
+
"Chris4K/most-downloaded-model",
|
| 10 |
+
"Chris4K/rag-tool",
|
| 11 |
+
"Chris4K/word-counter-tool",
|
| 12 |
+
"Chris4K/sentence-counter-tool",
|
| 13 |
+
"Chris4K/EmojifyTextTool",
|
| 14 |
+
"Chris4K/NamedEntityRecognitionTool",
|
| 15 |
+
"Chris4K/TextDownloadTool",
|
| 16 |
+
"Chris4K/source-code-retriever-tool",
|
| 17 |
+
"Chris4K/text-to-image",
|
| 18 |
+
"Chris4K/text-to-video",
|
| 19 |
+
"Chris4K/image-transformation",
|
| 20 |
+
"Chris4K/latent-upscaler-tool"
|
| 21 |
+
# More cool tools to come
|
| 22 |
+
]
|