Instructions to use Subject-Emu-5259/NeuralAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Subject-Emu-5259/NeuralAI with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
File size: 383 Bytes
38b4eff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # NeuralAI Tools Package
# Tools for extending NeuralAI capabilities
from .code_sandbox import CodeSandbox
from .file_manager import FileManager
from .web_fetcher import WebFetcher
from .db_connector import DatabaseConnector
from .git_assistant import GitAssistant
__all__ = [
"CodeSandbox",
"FileManager",
"WebFetcher",
"DatabaseConnector",
"GitAssistant",
]
|